Find duplicates with conditional formatting in Excel

Forum to talk about all the latest technologies - ins and outs!!
Post Reply
Admin
Site Admin
Posts: 325
Joined: Tue Sep 25, 2007 12:41 pm

Find duplicates with conditional formatting in Excel

Post by Admin »

In Excel, you can highlight cell values with colors through conditional formatting, to quickly capture important information in your spreadsheet. We will do it here step-by-step to highlight our data with duplicate entries:


Select your data range (A2:C12)


Image


Click on Conditional Formatting (under Home tab) > then Highlight Cells Rules > click on Duplicate Values...


Image


'Duplicate Values' window opens > select Duplicate from the drop down menu, and any color of your choice to highlight the duplicate cells > click OK.

Note: Here you could also select 'Unique' from the drop down list to highlight cells with unique values only. Try this as well :-)


Image


Values that are present more than once are now highlighted with your selected color. This includes duplicate entries as well as values present more than twice in the list.


Image




Use a formula to get exactly the same result as above:


Select your data range (A2:C12)

Go to Conditional Formatting > this time click on New Rule...


Image


from the New Formatting Rule window > select Use a formula to determine which cells to format > here enter the formula =COUNTIF($A$2:$C$12;A2)>1

and from the Format... select any color to highlight the cells > click OK.


Image


You have the same result as above, but this time you did it with a small programming :-)


Image




Few words on COUNTIF function:


COUNTIF function takes only two arguments - a range, and a criteria (it looks for the criteria within the range). So its syntax is

=COUNTIF(range, criteria)


So when I enter =COUNTIF($A$2:$C$12;A2)>1, the COUNTIF function looks for the criteria (cell A2 = New York) withn the range (A2:C12) and when it finds New York more than once(>1), it marks the cells containing New York with the blue color (that I selected under New Formatting Rule above).

As I have selected the range before clicking on Conditional Formatting, so the formula is copied automatically to other cells to look for the next entry and so on.



Look the interesting thing here:

In my list, Singapore and Hong Kong are present 3 times each. Here comes the point, you can now play with the Countif function :-). How?

First select your cells (A2:C12) – don't forget it, (may be you do it in a new worksheet, just copy your original data)

then instead of =COUNTIF($A$2:$C$12;A2)>1 enter =COUNTIF($A$2:$C$12;A2)=2, it marks cells only with duplicates


Image


Result: only duplicate entries are highlighted.


Image




Now to find values that are present more than two times:

instead of =COUNTIF($A$2:$C$12;A2)=2 enter =COUNTIF($A$2:$C$12;A2)>2



To find values present only 3 times:

instead of =COUNTIF($A$2:$C$12;A2)=2 enter =COUNTIF($A$2:$C$12;A2)=3

Don't forget to select your cells first!!


So now you know, how it works :-)






*Recommended:

Read wonderful articles (English & German) on Science & Tech, Environment, Health and many other topics only on BlogArena.

For comments of suggestions, please contact us: info@shamskm.com
Post Reply