A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Excel » Worksheet Functions
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Searching for Duplicate Text in a column



 
 
Thread Tools Display Modes
  #1  
Old August 24th, 2006, 10:34 PM posted to microsoft.public.excel.worksheet.functions
acesandspades101
external usenet poster
 
Posts: 1
Default Searching for Duplicate Text in a column

I have created a worksheet that lists identification numbers for valves and
instruments on filtration machines. Now these identification numbers are
unique because they are a combination of both letters, number and characters.
I need to find a way to check if any of these indentifaciton numbers have
been duplicated in a column. No 2 numbers are the same and again I need to
know how I could check a column in excel for possible duplicates to correct
them.

Thanks
  #2  
Old August 24th, 2006, 10:45 PM posted to microsoft.public.excel.worksheet.functions
[email protected]
external usenet poster
 
Posts: 8
Default Searching for Duplicate Text in a column

you can use MATCH to do a self-look up. If it comes back with a match,
it will tell you where the duplicate is.

Next to your part number do:

=MATCH(item_ID, Range_of_IDs, 0)

Good luck!



acesandspades101 wrote:
I have created a worksheet that lists identification numbers for valves and
instruments on filtration machines. Now these identification numbers are
unique because they are a combination of both letters, number and characters.
I need to find a way to check if any of these indentifaciton numbers have
been duplicated in a column. No 2 numbers are the same and again I need to
know how I could check a column in excel for possible duplicates to correct
them.

Thanks


  #3  
Old August 25th, 2006, 12:40 AM posted to microsoft.public.excel.worksheet.functions
Max
external usenet poster
 
Posts: 8,574
Default Searching for Duplicate Text in a column

Another way to play it ..

Assuming source data is running in A2 down

Place in B2:
=IF(A2="","",IF(COUNTIF($A$2:A2,A2)1,"dup",""))
Copy B2 down as far as required

Col B will flag duplicates in col A as "dup".
We could then easily autofilter* on col B for closer inspection of the "dup".
*Data Filter Autofilter
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"acesandspades101" wrote:
I have created a worksheet that lists identification numbers for valves and
instruments on filtration machines. Now these identification numbers are
unique because they are a combination of both letters, number and characters.
I need to find a way to check if any of these indentifaciton numbers have
been duplicated in a column. No 2 numbers are the same and again I need to
know how I could check a column in excel for possible duplicates to correct
them.

Thanks

 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 02:38 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.