Compare 2 spreadsheets

cmitch

New Member
Joined
Aug 15, 2018
Messages
5
Hopefully this isn’t too confusing…

I have two spreadsheets containing several thousand rows each and need to compare the two. The first (AV) is from our internal database and the second is from an online source (XYZ).
AV contains: Name, Email, Phone, Status
XYZ contains: Name, Email, Phone, Source

I need to see which items in XYZ are also in AV. On each match, I need the “Status” (pulled from AV).


Thank You in advance for any insight!
 

Excel Facts

Can you sort left to right?
To sort left-to-right, use the Sort dialog box. Click Options. Choose "Sort left to right"
Assuming all email address fields are filled in you need only match on the email since an email address is unique.
Possibly the same goes for phone number.

Maybe
in XYZ!A1
=VLOOKUP(XYZ!B1,AV!B$1:D$100000,2,0)
and copy down the column
 
Upvote 0
Assuming all email address fields are filled in you need only match on the email since an email address is unique.
Possibly the same goes for phone number.

Maybe
in XYZ!A1
=VLOOKUP(XYZ!B1,AV!B$1:D$100000,2,0)
and copy down the column

This worked - thank you!

If I throw another sheet in the mix (LMN) - is there a way to show if someone is on only XYZ or LMN or they're on both?
 
Upvote 0
Assuming LMN has the same format (you havent specified that)

in a blank cell
=VLOOKUP(XYZ!B1,LMN!B$1:D$100000,2,0)

This will give you items on XYZ that are in LMN
 
Upvote 0

Forum statistics

Threads
1,214,375
Messages
6,119,166
Members
448,870
Latest member
max_pedreira

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