VLOOKUP CONCATENATE – Excel & Google Sheets
This tutorial will demonstrate how to use VLOOKUP with a concatenated helper column in Excel and Google Sheets.
VLOOKUP with Concatenation
You may want to perform a VLOOKUP on a data table without unique values in any single column.
In this example, you could not use the VLOOKUP Function using the First Name or Last Name column, so you need to create a helper column concatenating some of your columns to create unique name values.
1 |
=C3&D3 |
In this example, we use the concatenating operator (&), but you could also use the CONCATENATE Function:
1 |
"CONCATENATE(C3,D3)" |
Once you have the helper column with distinct values, you can perform an exact match VLOOKUP. To get your lookup value for the formula, use the same concatenation as the helper column.
1 |
=VLOOKUP(G3&H3,B3:E7,4,FALSE) |
VLOOKUP CONCATENATE in Google Sheets
These formulas work the same in Google Sheets as in Excel.