Compare two column values using VLOOKUP function

Copper Contributor
COL1COL2Result (Matching/Not matching)
002900290029  (Yes)
00570218No
021811320218  (Yes)
03671310No
07262450No
07292791No
08263220No
09133290No
10953360No
10963430No
10973640N
113245001132  (Yes)
13094542No
131048301310  (Yes)
14498551No
16868571No
16888575No
16898577No
17248582No
17538590No
17988902No
20558904No
245089122450   (Yes)
26708927No
279189292791  (Yes)
28008931No
322089333220   (Yes)
329089393290   (Yes)
336089533360   (Yes)
343089553430   (Yes)
364089623640   (Yes)
450089744500   (Yes)
454289814542   (Yes)
483095364830   (Yes)
70829538No
7289  
7291  
7311  
7354  
7458  
8550  
8551 8551
8555  
8558  
8560  
8561  
8571 8571
8575 8575
8577 8577
8580  
8582 8582
8590 8590
8595  
8699  
8706  
8713  
8902 8902
8904 8904
8909  
8912 8912
8927 8927
8929 8929
8931 8931
8933 8933
8939 8939
8946  
8949  
8953 8953
8955 8955
8962 8962
8974 8974
8975  
8981 8981
9198  
9199  
9340  
9516  
9536 9536
9538 9538
4 Replies

@Srikanth0990 

Assuming that COL1 is column A and COL2 is column B, enter the following formula in row 2 of the result column:

 

=IF(ISNUMBER(MATCH(A2, B:B, 0)), A2&" (Yes)", "No")

 

Fill down

It's not working

@Srikanth0990 

Demo workbook that shows the working formula attached.

Thanks a ton!