How do I search for duplicate words in a column?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I need to check for duplicate names in a column. Is there a way to do this?
 
Copy that column into a new worksheet...I don't want you to mess up your
exisiting sheet.

Then, simply create a Pivot with the data of that single column. You will
have to fist take it on rows and thewn again drag into data box as Count.

That's it.

Thanks,

Manish Bajpai
 
Without using pivot tables:

Assume your values are in the range A1:A10, paste this code in A1 and drag
down:

=IF(COUNTIF($A$1:$A$10,A1)>1,"dup","nodup")
 
David,

You are simply great !!

Nice to brainstorm with you.

Thanks,

Manish
 

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

Back
Top