Conditional format - Different colour's for different duplicates

Beau the dog

Board Regular
Joined
Mar 8, 2021
Messages
72
Office Version
  1. 365
Platform
  1. Windows
Good afternoon,

Simple explanation, I have a list of postcodes in column F, starting at F6. I would like to highlight the duplicates, but a different colour for each different duplicate.

Without VBA please? I'm sure this is possible, just not for my tiny excel brain! I'm thinking a helper column is needed to give these different duplicates a reference number to conditional format against? But that formula is where I'm stuck...
 
Last edited:

Excel Facts

Repeat Last Command
Pressing F4 adds dollar signs when editing a formula. When not editing, F4 repeats last command.
How many different duplicates are you likely to have?
 
Upvote 0
Ok, you could use this formula in B2
Excel Formula:
=UNIQUE(FILTER(A2:A1000,(A2:A1000<>"")*(COUNTIFS(A2:A1000,A2:A1000)>1)))
and for the CF use
Excel Formula:
=AND(B$2<>"",ISNUMBER(MATCH(A2,B$2,0)))
Then just change the B$2 to B$3 etc
 
Upvote 0
Solution
Ok, you could use this formula in B2
Excel Formula:
=UNIQUE(FILTER(A2:A1000,(A2:A1000<>"")*(COUNTIFS(A2:A1000,A2:A1000)>1)))
and for the CF use
Excel Formula:
=AND(B$2<>"",ISNUMBER(MATCH(A2,B$2,0)))
Then just change the B$2 to B$3 etc

Spot on, thank you once again.
 
Upvote 0
You're welcome & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,215,133
Messages
6,123,233
Members
449,092
Latest member
SCleaveland

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top