where “data” is the named range H5:J8 and “ids” is the named range H5:H8.

Retrieving customer name

Working from the inside out, the MATCH function is used to get a row number like this:

The lookup value comes the customer id in C5, which is a mixed reference, with the column locked, so the formula can be easily copied. The lookup array is the named range ids (H5:H8), the first column in the customer table. The match type is set to zero to force an exact match.

The MATCH function returns 2 in this case, which goes into INDEX as the row number: With the column number hard-coded as 2 (customer names are in column 2) and the array set to the named range “data” (H5:J8) INDEX returns: Amy Chang.

Retrieving customer state

The formula to retrieve customer state is almost identical. The only difference is the column number is hard-coded as 3, since state info appears in the 3rd column:

Dynamic two-way match

By adding another MATCH function to the formula, you can set up a dynamic two-way match. For example, with the named range “headers” for H4:J4, you can use a formula like this: Here, a second MATCH function has been added to get the correct column number. MATCH uses the current column header in the first table to locate the correct column number in the second table, and automatically returns this number to INDEX.

Dave Bruns

Hi - I’m Dave Bruns, and I run Exceljet with my wife, Lisa. Our goal is to help you work faster in Excel. We create short videos, and clear examples of formulas, functions, pivot tables, conditional formatting, and charts.