One column list

E

Edie

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

Thanks!
 
B

Bob Phillips

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","")
 
2

2rrs

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
 

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