I have a list of over 13000 of my customer names. Many of the customers have
the same name, but are at a different address. I need to identify those with
a duplicate name. I don't want to delete them, I just want to highlight or
otherwise identify them. Any ideas?
Chip Pearson has lots of techniques to work with duplicates:
http://www.cpearson.com/excel/Duplicates.aspx
> I have a list of over 13000 of my customer names. Many of the customers have
> the same name, but are at a different address. I need to identify those with
[quoted text clipped - 4 lines]
> Thanks,
> Diane

Signature
Dave Peterson
You can sort the data by name, so that all identical names come
together. Then it is quite easy to introduce a formula like:
=IF(OR(A2=A1,A2=A3,"Duplicate","Unique")
in a helper column in row 2, and then copy this down the column (this
assumes that names are in column A). You can then fix the values, so
the description is then tagged with the name.
If the original order of the data is important to you, then you can
put a simple sequence 1,2,3 etc down another helper column first, and
then you will be able to re-sort the data back into that order once
you have done the above.
Hope this helps.
Pete
> I have a list of over 13000 of my customer names. Many of the customers have
> the same name, but are at a different address. I need to identify those with
[quoted text clipped - 4 lines]
> Thanks,
> Diane
Pete_UK - 13 Feb 2008 19:06 GMT
Sorry, missed a bracket in the formula:
=IF(OR(A2=A1,A2=A3),"Duplicate","Unique")
Apologies.
Pete
> You can sort the data by name, so that all identical names come
> together. Then it is quite easy to introduce a formula like:
[quoted text clipped - 24 lines]
>
> - Show quoted text -
Diane K - 13 Feb 2008 20:46 GMT
Thanks Pete and Dave. That's exactly what I needed!

Signature
Diane
Sorry, missed a bracket in the formula:
=IF(OR(A2=A1,A2=A3),"Duplicate","Unique")
Apologies.
Pete
> You can sort the data by name, so that all identical names come
> together. Then it is quite easy to introduce a formula like:
[quoted text clipped - 29 lines]
>
> - Show quoted text -
Pete_UK - 13 Feb 2008 22:12 GMT
Glad to be of help, Diane - thanks for feeding back.
Pete
> Thanks Pete and Dave. That's exactly what I needed!
>
[quoted text clipped - 44 lines]
>
> - Show quoted text -