Need to compare 2 columns and find missing names

DEllis

Active Member
Joined
Jun 4, 2009
Messages
344
Office Version
  1. 365
Platform
  1. Windows
Hi Everyone, I have Last name, First Name in A2 and I have Last Name, First Name in B2. How do I compare to see if there are any missing names? So in other words Column A 463 entries and column B has 450, I need to determine where there are no matches.
 

Excel Facts

Shade all formula cells
To shade all formula cells: Home, Find & Select, Formulas to select all formulas. Then apply a light fill color.
There are numerous ways.
You could use MATCH, VLOOKUP, or COUNTIF formulas to see if a value is found in the other list.
I would probably recommend MATCH.

So, if you wanted to see if the value in A2 is found in column B, you could use the formula:
Excel Formula:
=IF(ISNUMBER(MATCH(A2,B:B,0)),"Matched","Unmatched")
and copy down for each cell in columns A.

And then just to the reverse to check to see if B2 is found in column A.
 
Upvote 0
Solution

Forum statistics

Threads
1,214,625
Messages
6,120,598
Members
448,973
Latest member
ksonnia

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