The Excel workbook is included with our video training.

Abstract 

In this video, we look at how to use VLOOKUP to lookup values in an Excel Table.

Transcript 

In this video, we'll look at how to use VLOOKUP to lookup values in an Excel Table.

On this worksheet, I have a table that contains employee data, named Table1.

To illustrate how to work with VLOOKUP when the source data is in a table, I'll set up formulas to the right to extract data from the table, matching on an employee ID.

First, I'll select the table header and use Paste Special with Transpose to get the field values.

Then I'll add some formatting, and an ID value so I have something to match against.

Now I'll write the first VLOOKUP formula.

For the lookup, I want the value from K4, locked so it doesn't change when I copy the formula down.

For table_array, I want the lookup table itself, Table1.

Now, because VLOOKUP only looks to the right, it's important that the lookup is to the left of values we want to retrieve.

In this table, the ID is the leftmost column, so we can get any value.

For column ID, I need 2, since the first name is the second column in the table.

Match_type is zero or false, since I want to force an exact match.

When I enter the formula, we get "Julie", which is correct.

If I copy the formula down to the next row, I only need to adjust the column number to get last name.

And, I can do the same for all the other fields.

You might wonder if there's an easy way to avoid hardcoding the column number in the formula?

The answer is yes. Since the names in column J match values in the table header, I can use the MATCH function to get an index for each field.

To demonstrate, I'll use MATCH in column L by itself.

The lookup value comes from column J.

The array is the table header.

Match_type is zero for exact match.

When I copy the formula down, I get a numeric index for each field.

Now I just need to copy MATCH formula into VLOOKUP to replace the hardcoded column index.

This is an example of nesting functions inside a formula.

When I copy the formula down, I get a result for each field. 

I'll go ahead and remove the helper column.

When I change the ID value, everything works.

And, because I'm using a table, I can easily add more data, and the same formulas will continue to work without edits.

Finally, using match this way provides a really nice benefit: I can easily reorder fields in the output formulas, or, in the table itself, and the VLOOKUP formulas keep working.

Dave Bruns Profile Picture

AuthorMicrosoft Most Valuable Professional Award

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.