What can I do to match this properly?

Excellica

New Member
Joined
Feb 19, 2020
Messages
6
Office Version
  1. 2016
Platform
  1. Windows
Hi everyone,

I'm facing this challenge:

I have two lists (files) that concern customer club members for a loyalty program.

FILE A contains:
Email | Member number

Example:
EmailMember number
test@test.com1
try@try.com2

FILE B contains:
Email | Bonus points

Example:
EmailBonus points
test@test.com100
nope@nope.com200

First, I need to find out which members match from these files.
Next, for the matching members, I need the email AND the bonus points.

EXPECTED RESULT

Example:
EmailMember numberBonus points
test@test.com1100


I know how to match them, but when I get the list of matching members in FILE A, then I don't know how to add the corresponding bonus points from FILE B in a new column next to them.

Can anyone help me to figure this out?
 

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
Try this;


Book1
ABCDEFGHI
1EmailMember numberBonus pointsEmailMember number
2test@test.com1100test@test.com1
3try@try.com2200try@try.com2
Sheet1
Cell Formulas
RangeFormula
B2:B3B2=INDEX(I:I,MATCH(A2, H:H,0))
 
Upvote 0
Solution

Forum statistics

Threads
1,215,479
Messages
6,125,041
Members
449,206
Latest member
Healthydogs

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