Display only duplicate values and delete UNIQUE Items

M

Mistry

I have large excel file - which has duplicate items in, I would like
to compare col A and Col B and if any of the items in apear in that
combination anywhere else in the colums then i want either a helper
col to show its is a duplicate or to highlight it in a different
colour. Ideally as as this will be done by may people ( who will not
follow instructions on how to do this ) i would like for them to just
open up a file and then press on a button ....

Eg:

A | B| Help Col
1 | 5 | Duplicate
2 | 6 |
3 | 7 |
4 | 9 |
1 | 5 | Duplicate
1 | 5 | Duplicate


Any suggestions?
 
I

IanC

I can suggest a way to do it with 2 helper columns, but you can hide column
C if you want.

I'm assuming your data starts in row 2 and ends at row 100.

In C2 put =A2 & B2
In D2 put =IF(COUNTIF($C$2:$C$100,C2)>1,"Duplicate","")

Copy both cells down.
 

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