How to Use VLOOKUP MATCH

VLOOKUP MATCH is one of several possible lookup formulas within Microsoft Excel.  This tutorial assumes you already have a decent understanding of how to use VLOOKUP.  If you do not, please click here for a beginner’s tutorial on VLOOKUP.

VlookMatch8

Objective

VLOOKUP MATCH is an improved variation of your basic VLOOKUP or INDEX MATCH formula.  Using VLOOKUP MATCH allows you to perform a matrix lookup – instead of just looking up a vertical value, the MATCH portion of the formula turns your column reference into a dynamic horizontal lookup as well.  VLOOKUP MATCH is mainly useful for situations where you intended to perform heavy editing on your data set after you’ve finished writing your formula.  This is because VLOOKUP MATCH gives your lookup formula insertion immunity; whenever you insert or delete a column within your lookup array, your formula will still pull the correct number.  VLOOKUP MATCH is actually very similar to VLOOKUP HLOOKUP, but is slightly better because it does not require the creation of an additional row to label your column numbers.

The key difference between using VLOOKUP MATCH versus the basic VLOOKUP formula is that, in addition to your vertical lookup value (what you’ll be looking up down the left side of your table) you’ll also have a column lookup value (what you’ll be looking up across the top of your column headings).

Excel Bestsellers

The Syntax

VLOOKUP and MATCH are the two formulas that are combined to perform this lookup.  We’ll look at each of the formulas separately before putting them together.  The primary formula we’ll be using is VLOOKUP:

=VLOOKUP ( lookup value table_array , col_index_num [range_lookup] )

To use this formula, you’ll need a lookup value and a table array.  (We’ll address the column index number later and since we are not performing a range lookup, we can leave that part of the syntax blank)  In the example below, the lookup value is ID number “5” and the table array is the green box surrounding cells B6:F14.

VlookMatch1

Next we have the MATCH formula:

=MATCH ( lookup value lookup_array , [match _type] )

The match formula returns a position number based on your lookup value’s location within the array you’ve selected.  To use this formula you’ll need both a lookup value and a lookup array.  (The match type parameter should be left blank – doing so tells Excel that we want an exact match).  In the example below, the lookup value we’ll be using is the State of “WA” and the lookup array is the orange box surrounding cells B6:F6.

VlookMatch2

Putting it Together

The key to VLOOKUP MATCH is that we are replacing the “column index number” syntax of VLOOKUP with the MATCH formula.  Perform this combination using the following steps:

Step 1: Start by typing your VLOOKUP formula as you normally would, inputting the proper lookup value and table array for your lookup; in this example the lookup value is ID number “5” and the table array is the green box surrounding cells B6:F14.

VlookMatch3

Step 2: When you get to the column index number input, instead of typing in a hard coded number, start typing in the MATCH formula

VlookMatch4

Step 3: For the MATCH formula’s lookup value, select the cell containing name of the column you want to return from; in this example we want to return a State, so we click on it

VlookMatch5

Step 4: For the MATCH formula’s lookup array, select the row headings of your table array; in this example it is the orange box surrounding cells B6:F6.

VlookMatch6

Step 5: Close off both your MATCH formula and your VLOOKUP formula with two parentheses (doing this simply confirms for Excel that we want an exact match for the MATCH formula and that we don’t want to use a range lookup for the VLOOKUP)

VlookMatch7

How it Works

The MATCH formula we created returns the value 4.  Therefore, based on how we arranged the syntax, the VLOOKUP MATCH in this state is basically performing the same function as a VLOOKUP with a column index number of 4.

VlookMatch8

However, the key difference is that this column reference is now dynamic.  If I insert or delete a column from my lookup table, my return value will stay the same.  See below for an example of the difference in return values between VLOOKUP and VLOOKUP MATCH after inserting a column.

VlookMatch9

After the insertion occurs, the VLOOKUP formula’s column reference remains 4 and is now pulling from the City field.  Your return value has changed from “WA” to “Seattle.”  However, with VLOOKUP MATCH, since you’ve indicated by name which column you want to pull from, the column reference automatically updates and therefore you maintain the “WA” return value.

Disadvantages

While VLOOKUP MATCH is clearly an improvement over the basic VLOOKUP, there are still drawbacks to using this formula.  With VLOOKUP MATCH, every lookup must still start from left to right.  This can become problematic if you want to append lookup keys to the right of your dataset.  Additionally, your return values are limited to the originally table array you’ve selected.  For example, if you were to append one or two columns to the right of your data set, you wouldn’t be able to lookup and return values from those columns without adjusting your table array.

If you want to use a matrix lookup formula combination without these specific limitations, consider using INDEX MATCH MATCH.

16 thoughts on “How to Use VLOOKUP MATCH”

  1. Pingback: How to Learn Excel
  2. Your website is very informative. I feel like I’m close to getting the result I need but not there yet despite the index match. Hypothetically using your example above, how would you pull the information of the header instead of the state “WA” if you had the starting point of ID 5 and WA? I have 2 different spreadsheets. I need to match the dates and name of a person in one spreadsheet to lookup where they were assigned to work on another spreadsheet. Not sure if it makes sense but any help you could give would be great. I had never heard of index match before reading your post about it versus vlookup.

    Reply
  3. Depending on what you’re looking up, you could take it 1 step further if the user desires. In your match example you reference “E6” (“State”). You could reference “C2” instead and have a data validation list in “C2” referencing your column headers. That way, the user can decide if they want to lookup the State, City, or anything else. I like this method though so it’s more dynamic when inserting columns. Thanks!

    Reply
  4. Well, the VLOOKUP + Match works – somewhat. I have columns headings A, B, C, D, and E. I have rows 1, 2, 3, 4, 5.
    Information is contained within the matrix of these column/row headings. The odd thing is, all the lookup+matches work EXCEPT FOR MATCHING COLUMN A – I’m stumped.
    The lookup occurs in a table on one worksheet, and the lookup table is on another. I’ve checked for unseen spaces – none. Every combination works except of I try to Match A.
    Any thoughts most appreciated.

    Well written by the way – thanks.
    Mort Wakeland
    Dallas, TX

    Reply
  5. Hi there, your website is very helpful, thank you. What excel formula would I use to match keywords in one column to their respective landing pages in the other column. Ideally all the keywords are within the landing page, but use different subfolders, so I can’t just use a concatenation, I need something else instead. Thank you in advance.

    Reply
  6. I find your write up informative.Pls I need help to go further.I want to use vlookupmatch to reference between two worksheets and highlight or format the worksheet cells that returns value.How do I do that.i DONT WANT TO DO THE FORMATING MANUALLY BECAUSE IT COULD TAKE WEEKS TO FINISH.

    Reply
  7. Hi,
    I have a excel with data I need to highlight sequence data for example,
    Column A Column B
    1 Sun
    2 Mon
    3 Tue
    I need to find and highlight 1,2,3 with matching criteria (index)Sun, Mon, Tue on same order. Kindly let me know how is this can be done easily in excel

    Thanks

    Reply

Leave a Comment