Duplicates Excel 2000

D

Dendy

=IF(NOT(G2=G3), "No Duplicate")

I am using the above formula with a huge list. I have false on one of the
duplicates but would like to have false on both duplicates as I want to sort
all the false ascending to remove them at one time.

Thanks Linda
 
P

Pete_UK

Try it with this:

=IF(COUNTIF(G:G,G2)>1,"Duplicate","unique")

then copy down. No need to sort the list to get rid of the duplicates
- apply Autofilter to the column with the formula and choose Duplicate
from the filter drop-down. Then highlight all the visible rows and
click on Edit | Delete Row. Choose All from the filter drop-down to
see your remaining Unique values.

Hope this helps.

Pete
 
J

JLatham

Use COUNTIF instead, comparing individual entries in G to the entire list.
Assuming your huge list goes from row 2 to 295, then try this as the formula
in row 2 and fill down:
=IF(COUNTIF(G$2:G$295,G2)=1,"No Duplicate")
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top