Excel VLOOKUP Made Easy – Learn Basics with Practice File & Video

Have you ever found yourself lost in a sea of data spread across multiple columns and worksheets in Excel? Worse, you need a way to connect items. In this Microsoft Excel VLOOKUP tutorial, you’ll learn how to use VLOOKUP using two examples with different match types. (Includes free downloadable Excel VLOOKUP practice sheets and video tutorial.)

When I first heard about this powerful Excel function in 2005, I looked at the help file and syntax. I then rolled my eyes.

VLOOKUP(lookup_value,table_array,col_index_num,[range_lookup])

It didn’t look easy, and I couldn’t see the immediate benefit. But sometimes, pushing through difficulties can make things easier in the long run. I’m glad I did.

If you’re using Google Sheets, please see Using Google Sheets & VLOOKUP.

I like to start with an easy example when learning Microsoft Excel formulas and functions. This VLOOKUP tutorial will provide two examples using different function arguments and lookup values.

  • Example 1 uses one worksheet with an Approximate match. You’ll be referencing a table on the existing sheet.
  • Example 2 uses two worksheets with an Exact match. You’ll be referencing data from another worksheet.

What is Excel VLOOKUP Function?

VLOOKUP is an Excel function that allows you to search and retrieve a cell’s content from one column and use it in another location to retrieve data. As you might guess, the “V” stands for vertical and relies on looking up data from a lookup table column.

This lookup column could be on the same worksheet you’re viewing or another within your workbook. The function requires a common field or key and four arguments. In addition, the function allows you to specify whether to use an exact match or an approximate match.

Why Use a VLOOKUP Formula?

Let’s put these terms in context and give an example of how the function might be used. It’s similar to one of the practice exercises. When I was working on our local elections, the county provided a massive file with the data. Each worksheet contained info I might use.

The problem is I had numerous worksheets in this workbook. I didn’t want to switch between each sheet. That’s not efficient. Moreover, I wanted to do some of my own calculations using other Excel formulas.

The solution was to find a common denominator or key between these worksheets. Using this common key, I can create a new worksheet and pull the needed columns from each worksheet using the VLOOKUP function. Again, Microsoft Excel does the heavy lifting. This allows me to concentrate on one worksheet with the data I need.

You might have your own examples, such as retrieving data using a shopkeeping unit (SKU) or ISBN if you deal with books, part numbers, etc.

VLOOKUP in Action: Approximate Match Example

The example outlined here is found on the Example 1 worksheet, which can be downloaded at the end of the tutorial. All the names are fictitious.

One cell reference contains the voter’s birth date. However, I didn’t want the voter’s birth date to show on the final distributed files. But, I did want to do some age analysis.

Instead, I created a segment based on age ranges and a lookup formula. Excel would do a vertical lookup that returns the matching value from one column to the desired cell. For example, rather than showing a voter was 28, I would define them as “Young.”

Illustrated VLOOKUP with Age lookup table on same worksheet.
Using VLOOKUP to determine voter Age Segments

Let’s refer to the screenshot above with my first voter, Sophia Collins. If you scan Column D (Age), you’ll see she is 43 years old and in the “Mature” Segment. This is because the value of “Mature” in Column E was dynamically pulled using Excel’s VLOOKUP function.

The lookup table in Columns H and I with blue headings is the small Excel table. Microsoft refers to this as a table_array . This is where I’ve defined my four age segments: New, Young, Mature, and Senior.

My “Segment” works because if a voter is under 21, they are “New.” From 21-38, they are “Young.” From 39-59, they are “Mature.” And if they are 60 or older, they are “Senior.”

In Sophia’s case, Excel would take her age of 43 from cell D2 and return the closest match from Column H. Both columns D and H contain age data, which is our standard key.

When Excel found an approximate match, it would go to Column I and get the Label. The returned value of “Mature” was then copied to cell E2, the Segment.

You might notice that the lookup table doesn’t list every age. It doesn’t have to because I’m using an approximate match. I’m telling Excel to find me the closest age.

For example, the next voter Evelyn Bennett is 54, but there is no value for 54 in Column H. In this case, 54 falls between 39 and 59, so she is also labeled “Mature.”

As we stated, to use the VLOOKUP function, there needs to be a common key. In this case, it’s age. Both columns D and H contain ages. The column headings and cell contents can be different and don’t have to be an exact match.

Unpacking the Arguments of VLOOKUP

Let’s peel away some of the mystery and display how VLOOKUP shows in the Excel formula bar. In this illustration, I’ve clicked cell D2.

The term “argument” isn’t as complicated or negative as it sounds. If you’re familiar with the Excel formula bar, an argument is what goes in between the parentheses ( ). It provides an input value for the Excel function.

VLOOKUP formula with call outs to elements.
Showing VLOOKUP in the Formula bar

[A] – This represents the VLOOKUP formula in Cell E2.

=VLOOKUP(D2,$H$2:I$5,2,TRUE)

[B] – Cell D2 is our first argument called Lookup_value.

[C] – The cell range $H2$2:$I$5 is our Table_array and the second argument.

[D]2 is the Col_index_num from our Table_array and the third argument. Label is the 2nd column.

[E]TRUE is the Range_lookup and the fourth argument.

The good news is the VLOOKUP Function Arguments dialog box guides you through these elements, so you don’t need to type the long string in Excel’s formula bar.

VLOOKUP with Function Arguments dialog filled in.
Function Arguments dialog box builds the VLOOKUP formula

VLOOKUP Arguments

Some functions have required arguments, while others don’t. For example, to compute the voter’s age, I also used the TODAY function =TODAY(), which doesn’t use any arguments. Some common argument examples include:

  • cell range
  • true/false logical value
  • number

Using the formula from cell D2, here’s how these four arguments work.

VLOOKUP formula with numbered markers mapping to arguments.

1. Lookup_value – Think of this field as your starting point. In this example, I want to look up Sophia’s Age from cell D2.

2. Table_array – This is the cell range for your lookup table. This range lookup can be on your existing worksheet or another worksheet. For example, I have a small table with the age groupings and corresponding labels in this example.

3. Col_index_num – The column number on your lookup table with the necessary information. In our example, we want column 2, which has the column heading of Label. This will be our voter’s Segment name.

When we count, we’re counting the columns on the lookup table. So even though the “Label” column is Column I or the 9th column, it’s the 2nd column on the lookup table. Some people call this a Column Index.

4. Range-lookup – this field defines how close a match should exist between your Lookup_value (D2) and the value in the leftmost column on our lookup table. In our case, we want an approximate match, so we’ll use “TRUE.”

Essential Rules & Caveats for VLOOKUP’s Table Array

There are several rules to remember about this table array.

For example, if I want to use the same formula in cells E3 through E11, I don’t want my lookup cell references to shift each time I move down to the next cell. I need the cell references to be constant. This is called an absolute cell reference.

After you define your lookup range of cells, you can press F4. This will cycle through absolute and relative cell references. You want to select the option that includes a $ before your Column and Row. You can get around this if you know how to create named ranges in Excel.

Step by Step: Adding VLOOKUP Formula

The steps below were used for Example 1 from the practice file.

  1. Add in the column where you’ll enter the VLOOKUP formula. In my case, I added Column E and called it Segment.
  2. Add in your lookup table and data. Mine is H1:I5.
  3. Click cell E2.
  4. Click the Formulas tab from the Excel ribbon.
  5. Click the Insert Function button.
  6. From the Insert Function dialog box, type “vlookup” in the Search for a function textbox. You may also select it from the Lookup & Reference category.
  7. Click Go.
Insert Function dialog searching for VLOOKUP.
Finding the VLOOKUP function
  1. Click OK. The Function Arguments dialog box will appear with text boxes for the required arguments.
Blank VLOOKUP Function Arguments dialog.
VLOOKUP Required arguments
  1. In Lookup_value type D2. Or, you can click the cell.
  2. In Table_array type $H$2:$I$5. Note the $ signs.
  3. In Col_index_num type 2.
  4. In Range_lookup type true.
  5. Your Function Arguments dialog should look like the following. Notice in the lower left; you can see the Formula result.
Completed VLOOKUP function arguments dialog.
Completed VLOOKUP Arguments
  1. Click OK. You should now see “Mature” in cell E2.
  2. Click cell E2.
  3. Click the small green square (fill handle) in the cell’s lower right corner to copy the VLOOKUP formula down the column.
Copying formula to other cells.
Click square to autofill cell

You might want to use the Excel formula auditing feature if you get any error messages.

VLOOKUP Across Spreadsheets: Exact Match Example

The second scenario dealt with that same election file. This time there was an extra worksheet for political parties. The voter’s party was listed as an alphanumeric value called “Pcode” and not the political party.

This coding wasn’t intuitive. For example, “D” was for the “American Independent Party,” but some thought it meant “Democratic Party.” Another difference was we needed an exact match for the Political party.

Pcode column requiring a lookup.
Non-intuitive column needing lookup value

Again, the way to solve this problem was to use the worksheet with the Pcode and translation and have Excel use the VLOOKUP function for the Party name. I could add a column called “Political Party” to my original worksheet to show the lookup table’s information.

Using the Starting VLOOKUP Practice File

  1. Download the practice file. The file link is at the bottom of this tutorial.
  2. Review Example 2 – Voters worksheet. It has the voter’s first and last names but only a Pcode.
  3. Review Example 2 -Party Codes worksheet. It has a listing of party codes and political names. Each of the Party Codes and Names is unique. You’ll also note that Column A is sorted in ascending order.
Excel worksheet with vlookup values.
Worksheet with Translated Code Names
  1. Add your new column on the Voters worksheet that will display the info pulled from the Lookup table on the Party Codes worksheet. In my example, I added a column called Political Party in Column D. This is where I will insert the Excel function.
New Excel column for Political Party lookup values.
Add a new Excel column for lookup values
  1. Place your cursor in the first blank cell in that column. In my example, this is cell D2.
  2. Click the Formulas from the Excel ribbon.
  3. Click the Insert Function button.
  4. From the Insert Function dialog, type “vlookup” in the Search for a function textbox.
  5. Click Go.

Defining VLOOKUP Argument Values

After you click OK, Excel’s Function Arguments dialog appears and allows you to define the four values. You’ll see that your starting cell and the formula bar show the beginning part of the function =VLOOKUP(). The Function Arguments dialog adds the needed data elements that will display between ().

For illustration purposes, I overlaid the Party Codes worksheet to show the relationships.

Mapping the VLOOKUP Function Arguments between 2 sheets.
Mapping the VLOOKUP Function Arguments

After entering the required arguments, my dialog looks like the example below.

Completed VLOOKUP Function arguments values and result.
Mapped Values from both worksheets

You can see this in the red outlined formula bar above. I now have more information based on my Function Arguments dialog box entries. You might also note that when I clicked the Party Codes worksheet to add in my Table_array, Excel prepended the worksheet name before the cell range. However, I must return and enter my $ signs to make the cell references absolute.

The other item of interest is that Excel displays the Formula result = text line when you build these functions. This is great feedback that can show if your function is on target. In our example, Excel looked up the Pcode of “A” and returned the Political Party “Democratic.”

VLOOKUP is a powerful Excel function that can leverage spreadsheet data from other sources. There are many ways you can benefit from this function. I used a 1:1 code translation in this example, but you could also use it for group assignments. For example, you could assign state codes to a region such as CT, VT, and MA to a “New England” region.

One important note about using Excel functions and formulas is you want to be careful when deleting columns.

For example, I omitted the Age column in the final spreadsheet I distributed. After completing my VLOOKUP and getting my segments, I copied the cell values to a new Excel worksheet. If I had just deleted Column D, my Excel formula would’ve returned an error.

If you’re trying to do a horizontal lookup, you’ll be happy to learn that Excel has an HLOOKUP function. I haven’t done an HLOOKUP tutorial yet. If this interests you, let me know. However, Microsoft has released a new versatile vlookup alternative function called XLOOKUP.

Key Points & Takeaways

Before you grab the practice file below, you might want to review these points.

  • VLOOKUP is an Excel function that allows you to search and retrieve a cell’s content from one column and use it in another location to retrieve data.
  • The “V” in VLOOKUP stands for vertical, meaning it looks up data from a column in a lookup table.
  • The lookup table used by VLOOKUP can be on the same worksheet or another worksheet within your workbook.
  • The VLOOKUP function requires four arguments: the lookup value, the table array, the column index number, and the range lookup.
  • VLOOKUP allows you to specify whether to use an exact match or an approximate match.
  • VLOOKUP is useful when you have multiple worksheets with related data, and you want to consolidate specific data into one worksheet.
  • VLOOKUP can significantly increase efficiency when dealing with large datasets by eliminating the need to manually search for and copy data across worksheets.
  • If you delete a column that is referenced in a VLOOKUP formula, the formula will return an error. To avoid this, it’s recommended to copy the cell values to a new Excel worksheet after completing the VLOOKUP operation.
  • It’s important to use absolute cell references when defining the table array in VLOOKUP to ensure the correct cells are referenced when the formula is copied to other cells.

Get Hands-On: VLOOKUP Practice File & Video