Reputation: 2536
I have data in two different columns ColA and ColB in Excel. I want to highlight ColA if there is a duplicate found in ColB and I want to avoid highlighting if duplicate record is found in same column which is ColA. I am using Conditional Formatting - Highlight cell rules - Duplicate Values.
Upvotes: 0
Views: 65
Reputation: 60224
You need to use a formula for your conditional formatting.
eg:
then the conditional format formula would be:
=ISNUMBER(MATCH($A1,$B$1:$B$6,0))
Upvotes: 0