comparing two spread sheets

G

Guest

In spread sheet "A" and "B" the last names are in column B and first names are in column C. I want EXCEL to tell me if the names (a name consist of a last and first name) on spread sheet "B" or in spread sheet "A" spread sheet "A" may or may not already contain the names in spread sheet "B". How do you do this is EXCEL?
 
D

David McRitchie

I see Frank already answered, this would probably work as well,
and since I wasn't looking for arrary formulas, you'd probably find something
on Chip's pages.

Any my suggestion would have been...
You already haveYou would put a helper column in both sheets. If that is not possible
make up a new sheet.

C1: =TRIM(A1)&", " & TRIM(B1)
into both sheets and then you can use your typical looking for duplicates solutions
found on Chip Pearson's page. used of COUNTIF
Look for "duplicates" on his topic.htm page.
http://www.cpearson.com/excel/topic.htm

Chip doesn't show for two sheets so in case it is not clear, something like
D1: =IF(COUNTIF('other sheet'!C:C, C1),"duplicate", "not a duplicate")


longt said:
In spread sheet "A" and "B" the last names are in column B and first names are in column C. I want EXCEL to tell me if the names
(a name consist of a last and first name) on spread sheet "B" or in spread sheet "A" spread sheet "A" may or may not already contain
the names in spread sheet "B". How do you do this is EXCEL?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Linking Spread Sheets 1
Data separation 1
Drop down box! 1
Formatting a spreadsheet 3
Sorting 6
How to separate Smith, John 2
expand desktop excel 1
Change all text on Spread sheet 1

Top