• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Duplicate Values

Shabbo

Member
Dear Sir,
I wanted to find duplicate values between two lists but if I apply conditional formatting its taking duplicate value even if that is not available in list two.
I wanted to highlight duplicate values only if available in both list.
Please note I can use remove duplicate from list one but data is big and there are so many columns so I can’t apply remove duplicate.
 

Attachments

You can use a standard construct in cell B2 and copy down till list ends.
=IF(ISNA(MATCH(A2,$A$8:$A$8,0)),"",IF(COUNTIF($A$2:$A$5,A2)>1,"Duplicate",""))
 
Back
Top