0% found this document useful (0 votes)
28 views

Excel Tips

This document provides 3 formulas to verify differences between cells and display them separately. The first formula checks if a value in cell B2 is not found in range A2:A7000 and displays it if not found. The second formula uses VLOOKUP to check if the value in B2 is not found in column A and displays it if not found. The third formula uses VLOOKUP to check if the value in A2 is not found in column B and displays it if not found.

Uploaded by

prasad
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
28 views

Excel Tips

This document provides 3 formulas to verify differences between cells and display them separately. The first formula checks if a value in cell B2 is not found in range A2:A7000 and displays it if not found. The second formula uses VLOOKUP to check if the value in B2 is not found in column A and displays it if not found. The third formula uses VLOOKUP to check if the value in A2 is not found in column B and displays it if not found.

Uploaded by

prasad
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

1.

Verifying two cells for finding differeces and dispaly in separte cell

= IF(ISERROR(NOT(MATCH(B2,$A$2:$A$7000,0))),B2,"")

= =IF(ISERROR(VLOOKUP(B2,A:A,1,FALSE)),B2,"")

= IF(ISERROR(VLOOKUP(A2,B:B,2,FALSE)),A2,"")

You might also like