comparing columns of names

Talbott

New Member
Joined
May 12, 2002
Messages
4
Two columns of Company names; we'll call them column #1 and column #2. Some names are duplicated from column #1 to column #2 and vice versa. I want to compare the columns and produce a list of those company names that are in column #1 but not in column #2 and vice versa.

HELP! and THANKS!
 

Excel Facts

Can a formula spear through sheets?
Use =SUM(January:December!E7) to sum E7 on all of the sheets from January through December
G'day,

Maybe there's a faster way, but you can use a pair of VLOOKUPs. Formula looks like this:

=VLOOKUP(A2,$B$2:$B$100,1,0)

-> that would give you a list from B that also exist in A.

Adam
 
Upvote 0
On 2002-05-13 07:48, Talbott wrote:
Two columns of Company names; we'll call them column #1 and column #2. Some names are duplicated from column #1 to column #2 and vice versa. I want to compare the columns and produce a list of those company names that are in column #1 but not in column #2 and vice versa.

HELP! and THANKS!

=MATCH(A1,B:B,0) will return #N/A if the value in cell A1 isn't in column B:B. Copy this formula down for each value in column A:A.
 
Upvote 0

Forum statistics

Threads
1,214,593
Messages
6,120,435
Members
448,961
Latest member
nzskater

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top