One column list

  • Thread starter Thread starter Edie
  • Start date Start date
E

Edie

If I have one column with 900 rows of data, how can I make
a search for duplicates?

Thanks!
 
Edie,

You could put a formula in an adjacent column that shows them up, such as
=IF(COUNTIF($A$1:$A$900,A1)>1,"Duplicate","")
 
Edie,

This formula will lable as duplicate all entries with more than 1 occurrence.
It assumes that the 1st occurrence is not a duplicate.

with your data starting in C3
=IF(ISNUMBER(MATCH(C3,$C$2:C2,0)),"Duplicate","") copy down

HTH, 2rrs
 
Back
Top