Vlookup/ Index Match?

RJB78

Board Regular
Joined
Aug 8, 2016
Messages
69
Office Version
  1. 365
Hi All - I am trying to pull in a value (email address) based on first and last names being true/matching.

The first sheet column A has the first name, column B has last name.
The second sheet has column A with the first name, column B with the last name, and C with the email address.

I am trying to get the formula to find the first and last name from the first sheet in the second sheet and return the matching email address. I don't want to use a helper column if possible.

Thanks in advance.
 

Excel Facts

Wildcard in VLOOKUP
Use =VLOOKUP("Apple*" to find apple, Apple, or applesauce
can you load a sample using 2XLBB - see signature

Otherwise a lot of assumptions

=INDEX( Column you want returned - email address, MATCH( First name cell & Last name cell , lookup Column with first name & lookup column with last name, 0 ))

Assuming Look up table is in column A, B, C on sheet 2
sheet one is where you want the data returned and first name in sheet1 column A and last name in sheet1 column B - starting at row2

=INDEX( Sheet2!C:C, MATCH ( Sheet1!A2 & Sheet1B2, Sheet2!A:A&Sheet2!B:B , 0 ))

But a range is more efficient in excel then using full column references
 
Last edited:
Upvote 0
Solution

Forum statistics

Threads
1,214,912
Messages
6,122,200
Members
449,072
Latest member
DW Draft

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