• 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

  • duplicate values.xlsx
    7.8 KB · Views: 12
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",""))
 
hii @Shabbo


See if is ok ? Using Conditional formating.

CF1.

=IF(ISERROR(VLOOKUP(A2,$E$2:$E$50,1,FALSE)),FALSE,TRUE)

CF2.

IF(ISERROR(VLOOKUP(E2,$A$2:$A$70,1,FALSE)),FALSE,TRUE)



Regard
Rahul shewale
 

Attachments

  • duplicate values.xlsx
    21.1 KB · Views: 6
Making a named reference to both tables and the variable list member.
60291
CFs rules:
=ISNUMBER(MATCH(vList;rList2;0)), applied on range of first table
=ISNUMBER(MATCH(vList;rList1;0)), applied on range of second table
60292
 

Attachments

  • Copy of duplicate values.xlsx
    9 KB · Views: 4
I used tables and a couple of named formulae (as always)

60309

The conditional formats are then based upon
= duplicated1?
= duplicated2?


The result:
60311
 

Attachments

  • duplicate values (PB).xlsx
    16.6 KB · Views: 3
Back
Top