How to Use VLOOKUP in Excel: 4 Easy Steps (For Beginners) (2024)

The VLOOKUP function searches for a specific value in a dataset.

If it finds it, it returns the corresponding value from a different column in the same row.

This allows you to look for data in one spreadsheet and bring it to another spreadsheet in a few seconds⏱️

And that’s what makes VLOOKUP one of the most time-saving functions in Excel.

Download and open the free workbook, and let me show you how to use the Excel VLOOKUP function in 4 simple steps.

VLOOKUP example

In the example in this VLOOKUP tutorial, you have a list of sales made by different sales representatives (to the left).

To the right, you have a small list of order IDs your boss sent you – but without any prices.

She wants you to find the price of those specific orders.

And she needs them in 5 minutes. You better hurry…

VLOOKUP to the rescue 🚑

How to Use VLOOKUP in Excel: 4 Easy Steps (For Beginners) (1)

You need to look for the specific order IDs in column A and return the corresponding price, which is the ‘return value,’ from column C.

How to Use VLOOKUP in Excel: 4 Easy Steps (For Beginners) (2)

So, how to use VLOOKUP? I’ll show you, step-by-step.

Step 1: The lookup value

Select the cell where you want the result to be and start the VLOOKUP formula by typing:

=VLOOKUP(

Now, a tooltip appears that shows you the VLOOKUP syntax.

The syntax is the input an Excel function needs to return the output you need, where each input is also known as a parameter or ‘argument’.

How to Use VLOOKUP in Excel: 4 Easy Steps (For Beginners) (3)Kasper Langmann, Microsoft Office Specialist

Let’s look at each argument individually.

The first argument is the lookup_value.

The lookup value is what you’re looking for.

✔️Click or type a reference to the cell with the value you’re looking for.

You’re looking for the specific order ID. Click the order ID (from the list your boss sent you) to make a reference to it.

How to Use VLOOKUP in Excel: 4 Easy Steps (For Beginners) (4)

Then write a comma to tell VLOOKUP you’re ready to input the second argument in the syntax.

Your VLOOKUP function should look like this by now (replace the cell reference with your own):

=VLOOKUP(E3,

Pretty easy so far, right? 😊

Let’s move on.

Step 2: The table array

Now Excel asks you to write the secondargument into the VLOOKUP function: thetable_array.

This is where you are searching for the lookup value (from step 1, remember?).

This is a bit trickier but don’t worry, it’s over in a minute ⏱️

The table array, or table range, is a specific group of cells.

This range must contain both the column you’re looking in and the column you want to return something from.

✔️Select or type the range – like you would any other group of cells.

The table array should span the number of columns needed, including columns A (the lookup column), B, and C.

That means VLOOKUP searches for the order ID in column A and returns the price from the second column, B, or C, depending on your selection in the next step.

How to Use VLOOKUP in Excel: 4 Easy Steps (For Beginners) (5)

Place a comma to wrap up step 2.

Your VLOOKUP function should look like this by now:

=VLOOKUP(E3, A:C,

VLOOKUP looks from left to right!

VLOOKUP looks for the lookup value in the leftmost column of the lookup table or table array, aiming to find the matching value.

That means whatever you want to return must be located somewhere to the right of the column you’re searching in.

If it’s not – you either need to rearrange the columns oruse the INDEX MATCH function instead.

How to Use VLOOKUP in Excel: 4 Easy Steps (For Beginners) (6)Kasper Langmann, Microsoft Office Specialist

The hard part’s over👍

Now you need to decide what column you want to return something from.

Step 3: Column index number

The third argument of the VLOOKUP syntax is the col_index_num (column index number).

The column index number tells VLOOKUP which of the columns in the table array (from step 2) you want to return a value from.

If we zoom out, this is the reason you’re using VLOOKUP in the first place! So, tell me, why is that?

“Because I want to return the price of the order ID I’m looking for.”

Good! Focus on the first part of that sentence.

“Because”

No, not that…😑

“I want to return the price”

BINGO!

✔️Write the column number you want to return something from.

The price is in column C. Column C is the 3rd column in the table_array. So, write 3.

How to Use VLOOKUP in Excel: 4 Easy Steps (For Beginners) (7)

Write a comma to indicate you’re ready for the fourth and last argument in the VLOOKUP function syntax.

Your VLOOKUP function should look like this by now:

=VLOOKUP(E3,A:C,3,

The column index number follows the table array. If the table array was columns B, C, and D, the first column (column index number = 1) would be B, and the third column (column index number = 3) would be D.

How to Use VLOOKUP in Excel: 4 Easy Steps (For Beginners) (8)Kasper Langmann, Microsoft Office Specialist

We’re almost there…

Step 4: Exact match or approximate match

The fourth argument of the VLOOKUP function is the range_lookup which decides the lookup “mode”.

Most of the time you’ll need to use “exact match mode”. Unfortunately, this is not the default, so you need to let Excel know this with the range lookup argument.

The exact match means the VLOOKUP function will look for exact values exclusively, but it’s important to note that VLOOKUP is not case-sensitive.

Only values that are 100% identical to the lookup value, aside from case differences, are considered an exact match.

✔️ Write the word: FALSE to use exact match.

How to Use VLOOKUP in Excel: 4 Easy Steps (For Beginners) (9)

Now wrap up the formula with an end parenthesis, and you’re good to go🏆

Your formula should look like this by now:

=VLOOKUP(E3,A:C,3,FALSE)

Press enter!

Approximate match

Now, that doesn’t mean the other mode, “approximate match mode”, is not useful. It’s very convenient for looking up lookup values within an interval.

To use “approximate match mode”:

  • Write TRUE in the range lookup argument
  • Sort the leftmost column of your table array from lowest to highest

Because it’s so rarely used, I won’t dive deeper into approximate match in this VLOOKUP tutorial.

That’s it – Now what?

Well done on learning how to use VLOOKUP – the most popular advanced Microsoft Excel function of all time.

Now you can search for a value and return another value in the same row from another column.

How to Use VLOOKUP in Excel: 4 Easy Steps (For Beginners) (10)

It wasn’t so scary after all, right?

VLOOKUP is the most popular non-beginner Excel function of all time and is used in a very wide range of intermediate and advanced formulas.

As soon as you start advancing your Excel skill level, you recognize that data in your organization is spread across many different Excel worksheets and files.

The VLOOKUP function’s ability to join the data you need from these Excel files is extremely handy💡

But 2 other functions are just as useful: IF and SUMIF.

Click here to join my free 30-minute video course and learn IF, SUMIF, data cleaning, formatting techniques, and more.

Other relevant resources

There’s much more to VLOOKUP! Check out these tutorials:

  • VLOOKUP with Wildcards (asterisk) for partial match searches
  • VLOOKUP not working? Fix the ‘not found’ #N/A error (and much more)
  • Using VLOOKUP in VBA (advanced)
  • Enhance your error handling with the IFERROR function in our dedicated tutorial.

Looking to move on from VLOOKUP? As a foundational lookup function, it sets the stage for advancing to more complex tools like INDEX MATCH or the XLOOKUP function.

The V in VLOOKUP stands for vertical. That means VLOOKUP can only perform a vertical lookup, where data is listed vertically. If your data is listed horizontally, you should check out HLOOKUP.

Earlier I talked a bit about making references to ranges. I don’t have to lock my A:C reference, but you might have to with your cell references. Click here to learn all about references.

Take care👋

Author

Written by Kasper Langmann, co-founder of Spreadsheeto and a certified Microsoft Office Specialist.

This tutorial reflects over 60 hours of dedicated research, testing, and writing.

Last updated on February 1st, 2024.

One last thing before you go: make sure to sign up for my free Excel course!

How to Use VLOOKUP in Excel: 4 Easy Steps (For Beginners) (11)

Kasper Langmann2024-04-30T13:29:45+00:00
How to Use VLOOKUP in Excel: 4 Easy Steps (For Beginners) (2024)

FAQs

How to Use VLOOKUP in Excel: 4 Easy Steps (For Beginners)? ›

In its simplest form, the VLOOKUP function says: =VLOOKUP(What you want to look up, where you want to look for it, the column number in the range containing the value to return, return an Approximate or Exact match – indicated as 1/TRUE, or 0/FALSE).

How do you do a simple VLOOKUP step by step? ›

How to use VLOOKUP in Excel
  1. Click the cell where you want Excel to return the data you're looking for.
  2. Enter =VLOOKUP(lookup value,table array,column index number,range lookup) .
  3. Press Enter or Return.
Nov 6, 2023

What is the simplest way to understand VLOOKUP in Excel? ›

In its simplest form, the VLOOKUP function says: =VLOOKUP(What you want to look up, where you want to look for it, the column number in the range containing the value to return, return an Approximate or Exact match – indicated as 1/TRUE, or 0/FALSE).

How does VLOOKUP work for dummies? ›

VLOOKUP is a powerful function in Excel that searches for a value in the first column of a range (table or array) and returns a corresponding value in the same row from a specified column. The "V" in VLOOKUP stands for "Vertical," indicating that it searches vertically (downward) in a table.

What are the 4 arguments you give in VLOOKUP? ›

The Syntax of the VLOOKUP Function

The function accepts four arguments: lookup_value, table_array, col_index_num, and range_lookup. The first three are mandatory arguments, while the last one is optional. lookup_value: Required. It represents the value we want to look for in the first column of a table or dataset.

What are the three rules for VLOOKUP? ›

The VLOOKUP function consists of three required arguments, in the following order: lookup value, table array, and column index number. The lookup value is the value for which you want to find matching data and must appear in the first column of the lookup table; it can be a value, a text string, or a cell reference.

What is the fastest way to VLOOKUP in Excel? ›

Although the regular VLOOKUP function is just simpler to use on a day-to-day basis, keep in mind that if your spreadsheet starts taking time for calculations, you can make it much faster by using the Double-VLOOKUP trick. Just remember to sort your IDs before and your spreadsheet will calculate crazy fast again.

Are Vlookups easy to learn? ›

VLOOKUP is an extremely useful tool, and learning how to use it is easier than you think! Before you start, you should understand the basics of functions. Check out our Functions lesson from our Excel Formulas tutorial (or select a specific version of Excel).

How do you explain what a VLOOKUP is? ›

VLOOKUP stands for 'Vertical Lookup'. It is a function that makes Excel search for a certain value in a column (the so called 'table array'), in order to return a value from a different column in the same row.

How to use VLOOKUP in Excel to compare two columns? ›

The formula in Excel to compare two columns using VLOOKUP is as follows. VLOOKUP(A2,..,..,..) – takes the value in cell A2. VLOOKUP(A2, $B$2:$B$5,..,..) – compares with all the values in cells from B2 to B5. That's why the cells in the range B2:B5 are locked using absolute reference.

How to use VLOOKUP to find matches from another sheet? ›

  1. VLOOKUP from another sheet step 1: Identify the common field.
  2. Step 2: Select the range of data.
  3. VLOOKUP from another sheet step 3: Enter the VLOOKUP function.
  4. Step 4: Check the result.
  5. How to get more data from another sheet than VLOOKUP.
  6. Using VLOOKUP in two Excel sheets FAQ.
Apr 21, 2023

What is the better formula for VLOOKUP? ›

The superior alternative to VLOOKUP is INDEX MATCH. While VLOOKUP works fine in most cases, it tends to reveal flaws when you start using it in large and complex sheets. The INDEX MATCH formula is actually two different functions; INDEX and MATCH.

What happens when VLOOKUP doesn't find value? ›

When the range_lookup argument is FALSE—and VLOOKUP is unable to find an exact match in your data—it returns the #N/A error.

Is learning VLOOKUP easy? ›

VLOOKUP is an extremely useful tool, and learning how to use it is easier than you think! Before you start, you should understand the basics of functions. Check out our Functions lesson from our Excel Formulas tutorial (or select a specific version of Excel).

What is the formula for lookup in Excel? ›

The LOOKUP function in Excel retrieves a value from a one-row or one-column range. It performs a rough match lookup either vertically or horizontally. The vector form syntax is =LOOKUP(lookup_value, lookup_vector, [result_vector]), while the array form is =LOOKUP(lookup_value, array).

References

Top Articles
Basiscomputer-Archive
83Rd Precinct Twitter
Victory Road Radical Red
Noaa Charleston Wv
Tesla Supercharger La Crosse Photos
Boggle Brain Busters Bonus Answers
Craigslist Pet Phoenix
Graveguard Set Bloodborne
Scentsy Dashboard Log In
2013 Chevy Cruze Coolant Hose Diagram
Pwc Transparency Report
World Cup Soccer Wiki
Inside California's brutal underground market for puppies: Neglected dogs, deceived owners, big profits
Purple Crip Strain Leafly
Industry Talk: Im Gespräch mit den Machern von Magicseaweed
New Stores Coming To Canton Ohio 2022
Nutrislice Menus
Commodore Beach Club Live Cam
Obsidian Guard's Cutlass
Traveling Merchants Tack Diablo 4
PowerXL Smokeless Grill- Elektrische Grill - Rookloos & geurloos grillplezier - met... | bol
Tyrone Unblocked Games Bitlife
Amortization Calculator
Dallas Mavericks 110-120 Golden State Warriors: Thompson leads Warriors to Finals, summary score, stats, highlights | Game 5 Western Conference Finals
Miltank Gamepress
Sam's Club Gas Price Hilliard
Timeline of the September 11 Attacks
Nottingham Forest News Now
Rural King Credit Card Minimum Credit Score
Mchoul Funeral Home Of Fishkill Inc. Services
Darktide Terrifying Barrage
Kleinerer: in Sinntal | markt.de
N.J. Hogenkamp Sons Funeral Home | Saint Henry, Ohio
Kelley Fliehler Wikipedia
R/Orangetheory
Street Fighter 6 Nexus
Craigslist Ludington Michigan
2024 Ford Bronco Sport for sale - McDonough, GA - craigslist
Philadelphia Inquirer Obituaries This Week
Nsav Investorshub
9 oplossingen voor het laptoptouchpad dat niet werkt in Windows - TWCB (NL)
Go Bananas Wareham Ma
Senior Houses For Sale Near Me
Tacos Diego Hugoton Ks
Spreading Unverified Info Crossword Clue
Leland Westerlund
Spn 3464 Engine Throttle Actuator 1 Control Command
Ssss Steakhouse Menu
When Is The First Cold Front In Florida 2022
The Love Life Of Kelsey Asbille: A Comprehensive Guide To Her Relationships
Cbs Scores Mlb
Latest Posts
Article information

Author: Neely Ledner

Last Updated:

Views: 6433

Rating: 4.1 / 5 (42 voted)

Reviews: 89% of readers found this page helpful

Author information

Name: Neely Ledner

Birthday: 1998-06-09

Address: 443 Barrows Terrace, New Jodyberg, CO 57462-5329

Phone: +2433516856029

Job: Central Legal Facilitator

Hobby: Backpacking, Jogging, Magic, Driving, Macrame, Embroidery, Foraging

Introduction: My name is Neely Ledner, I am a bright, determined, beautiful, adventurous, adventurous, spotless, calm person who loves writing and wants to share my knowledge and understanding with you.