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
from other sheets 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
Comments
Post a Comment