Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Can someone point me in the right direction? What is the best way to
take two lists of same last names, sheet 1 and sheet 2, and on sheet 3 it tells you which names on sheet 1 are not on sheet 2? Need to figure out what names are missing on sheet 2. Thanks |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
One way,
Assuming the lists are in Col-A on both sheets, and that in Sheet1 starts in A1 In a helper column on Sheet1 =MATCH(A1,Sheet2!A:A,0) Copy down and you should see #N/A where not matched, ie a missing name. Or, literally to show which names are missing =IF(ISERROR(MATCH(A1,Sheet2!A:A,0)),A1,"") Regards, Peter T "Bull" wrote in message ... Can someone point me in the right direction? What is the best way to take two lists of same last names, sheet 1 and sheet 2, and on sheet 3 it tells you which names on sheet 1 are not on sheet 2? Need to figure out what names are missing on sheet 2. Thanks |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Comparing Lists | Excel Programming | |||
Comparing two lists | Excel Discussion (Misc queries) | |||
Comparing two lists | Excel Programming | |||
Comparing 2 Lists | Excel Discussion (Misc queries) | |||
Comparing Lists to Partial Lists | Excel Programming |