View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Toppers Toppers is offline
external usenet poster
 
Posts: 4,339
Default Compare and Return Results



If lists are in column of Sheet1 & Sheet2:

Put in B1 on Sheet1:

=IF(A1,Sheet2!A:A)=0),"Name not on both","")

Put in B1 on Sheet2:

=IF(A1,Sheet1!A:A)=0),"Name not on both","")


and copy down. This will list missing names.

HTH

"Electronic Lady" wrote:

I want to compare one column on Worksheet A to another Column on Worksheet B.
Proper Names will be iin boths Columns. I'm looking for Names that are not
on both Worksheets. That is, if the name is not found on both Worksheets, I
want to capture that name/result. What can I do to obtain this? thanks!