Use the vlookup function.
Place both datasets in the same excel file on different sheets. Then, in the column next to rowset 805 (which I accept on sheet2), type
=if(isna(vlookup(A1, Sheet1!$A$1:$A$800, 1, false)), 0, 1)
The column will contain 0 for values โโthat are not found on another sheet, and 1 for values. You can sort the sheet to find all missing values.
Abtin Forouzandeh Sep 30 '09 at 19:35 2009-09-30 19:35
source share