Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Column B contains a list of names and so does column D. I need a code that will compare the two list in this way: Any name in column B that is not in column D should be listed in column C. Thanks in advance for your help. Jay dean *** Sent via Devdex http://www.devdex.com *** Don't just participate in USENET...get rewarded for it! |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Jay
One way: =IF(ISNA(VLOOKUP(B2,D:D,1,FALSE)),B2,"") Regards Trevor "jay dean" wrote in message ... Column B contains a list of names and so does column D. I need a code that will compare the two list in this way: Any name in column B that is not in column D should be listed in column C. Thanks in advance for your help. Jay dean *** Sent via Devdex http://www.devdex.com *** Don't just participate in USENET...get rewarded for it! |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi
in C1 enter the formula =IF(COUNTIF($D$1:$D$1000,B1),"",B1) and copy down -- Regards Frank Kabel Frankfurt, Germany jay dean wrote: Column B contains a list of names and so does column D. I need a code that will compare the two list in this way: Any name in column B that is not in column D should be listed in column C. Thanks in advance for your help. Jay dean *** Sent via Devdex http://www.devdex.com *** Don't just participate in USENET...get rewarded for it! |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Thanks, Frank and Trevor! Jay Dean *** Sent via Devdex http://www.devdex.com *** Don't just participate in USENET...get rewarded for it! |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Comparing two lists | Excel Discussion (Misc queries) | |||
Comparing to lists | Excel Discussion (Misc queries) | |||
Comparing Lists | Excel Worksheet Functions | |||
Comparing Lists | Excel Worksheet Functions | |||
Comparing 2 Lists | Excel Programming |