Compare two excel sheets -


How do I compare two Excel sheets and to determine which column is missing?

(I

Note: They are in random order.

< P> You can use the VLOOKUP function in an Excel worksheet to help you find "unavailable" data in a different sheet. For example, take the following two worksheets:

< Pre> sheet 1 ------ ABC1A2bb3cc4dd

  sheet 2 --- --- ABC 1A2BB3DD  

Cell B1 The following formulas are available. Add Sheet and the cell B4 under the formula:

  = IF (ISERROR (VLOOKUP (A1, Sheet 2! $ A $ 1 $ 1, $ 1, FALSE), "Delete from Other Sheet", "")  

Sheet1 Which is missing from the other sheet in the column b , it happens:

  sheet 1 ------ ABC 1A2bb3cc Missing 4DD  
from other sheets

Comments

Popular posts from this blog

windows - Heroku throws SQLITE3 Read only exception -

lex - Building a lexical Analyzer in Java -

python - rename keys in a dictionary -