Comparing values of two Excel sheets

Solved/Closed
issa - Updated on Jun 15, 2017 at 05:51 AM
 dh - Jun 10, 2017 at 09:04 AM
Hello,
I have two excel sheets with IP Codes. I need to find which IP Codes are not available in Sheet#1 and highlight them, i.e.

Sheet#1
Column A=IP Codes

Sheet#2
Column A=IP Codes

Compare the two columns and highlight the unique IP Codes.


Awaiting for your immediate response. Thank you.


ISSA
Related:

1 response

rizvisa1 Posts 4478 Registration date Thursday January 28, 2010 Status Contributor Last seen May 5, 2022 766
Mar 1, 2010 at 08:43 AM
Use VLOOKUP formula in sheet 2

If your data starts in sheet 2 from A2 you can use

=IF(ISERROR(VLOOKUP(A2, Sheet1!A:A,1,FALSE)), "NOT FOUND", "")

If will say "NOT FOUND" if there is no match else would remain ""
5
just what doctor ordered thank you
0