View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
[email protected] robotman@gmail.com is offline
external usenet poster
 
Posts: 13
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