try the following:
Place this formula in Sheet1 C column:
=VLOOKUP(CONCAT(A1,B1),Sheet2!A:D,4,0)
You will need to have 4 columns in sheet2, the first column should be CONCATENATE FORMULA as follows:
=CONCAT(B1,C1)
The second column will be your first name, the third column will be your last name and the last column of the corresponding letter.
How does this formula work?
=VLOOKUP(**CONCAT(A1,B1)**,Sheet2!A:D,4,0)
It combines the first and last name on sheet1 and looks for it on Sheet2 in column A, if there is a match, it will return the value of the email cell in column column D2 (column index D is 4).
Hope this help helps you.
source share