Finding matching records

tbrynard01

Board Regular
Joined
Sep 20, 2017
Messages
129
Office Version
  1. 365
Platform
  1. Windows
I have two spreadsheets with Data, I am wanting to find the Donor ID #, in the one sheet if it matches with the person in the other sheet. but of course when there are multiple last names that are the same and even first names how do I select for example an address as another match?

I'm not sure if this makes sense but it will save a lot of time if I can get this figured out with a formula as opposed to manual checking.

Thank you
 

Excel Facts

Get help while writing formula
Click the italics "fx" icon to the left of the formula bar to open the Functions Arguments dialog. Help is displayed for each argument.
One approach would be to...

1. In a new column of the first spreadsheet, use the Concatenate function to combine the last name, first name and address of the first row. Copy the formula down to the end.
2. Do the same for the second spreadsheet.
3. Use the Index and Match functions utilizing the just created concatenated columns to return the donor number.

If you're not familiar with Concatenate, Index and Match, you'll find many examples on this forum as well as elsewhere online.
 
Upvote 0
Since you are using Excel 365 you could use the FILTER function.
Example:
Sheet 1
Book2
ABCD
1First NameLast NameAddressFind ID
2JoePaul123 Cort LaneID12
3SamSmith256 Oxy StID13
4JanePaul75 Gray StreetID14
5SamSmith658 Down LnID15
Sheet1
Cell Formulas
RangeFormula
D2:D5D2=FILTER(Sheet2!$A$2:$A$5,($A$2:$A$5=Sheet2!B2)*($B$2:$B$5=Sheet2!C2)*($C$2:$C$5=Sheet2!D2),"No Match")


Sheet 2
Book2
ABCD
1ID#First NameLast NameAddress
2ID12JoePaul123 Cort Lane
3ID13SamSmith256 Oxy St
4ID14JanePaul75 Gray Street
5ID15SamSmith658 Down Ln
Sheet2
 
Upvote 0
One approach would be to...

1. In a new column of the first spreadsheet, use the Concatenate function to combine the last name, first name and address of the first row. Copy the formula down to the end.
2. Do the same for the second spreadsheet.
3. Use the Index and Match functions utilizing the just created concatenated columns to return the donor number.

If you're not familiar with Concatenate, Index and Match, you'll find many examples on this forum as well as elsewhere online.
Thank you. I'm not have taken a look at both but not sure how to combine correctly as I'm not getting the correct results. I did use vlookup on the concatenate fields and it did return results
 
Upvote 0
Since you are using Excel 365 you could use the FILTER function.
Example:
Sheet 1
Book2
ABCD
1First NameLast NameAddressFind ID
2JoePaul123 Cort LaneID12
3SamSmith256 Oxy StID13
4JanePaul75 Gray StreetID14
5SamSmith658 Down LnID15
Sheet1
Cell Formulas
RangeFormula
D2:D5D2=FILTER(Sheet2!$A$2:$A$5,($A$2:$A$5=Sheet2!B2)*($B$2:$B$5=Sheet2!C2)*($C$2:$C$5=Sheet2!D2),"No Match")


Sheet 2
Book2
ABCD
1ID#First NameLast NameAddress
2ID12JoePaul123 Cort Lane
3ID13SamSmith256 Oxy St
4ID14JanePaul75 Gray Street
5ID15SamSmith658 Down Ln
Sheet2
Thanks, did not get the correct results using this. Thanks though.
 
Upvote 0
It would help if you would post a small sample of your data and result you expect. Is the data I used in the example close to how your sheets look? What formula did you actual use that gave the wrong answer?
 
Upvote 0

Forum statistics

Threads
1,214,982
Messages
6,122,581
Members
449,089
Latest member
Motoracer88

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