GridFormula
← Back to Tutorials
Excel

How to Use VLOOKUP in Excel

VLOOKUP is one of the most popular functions in Excel. It stands for Vertical Lookup. You can use it to search for a value in the first column of a table and return a value in the same row from a specified column.

Syntax

The basic syntax for VLOOKUP

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

Example Data

Consider the following sales data:

Product IDProduct NamePriceCategory
P001Laptop$999Electronics
P002Office Chair$199Furniture
P003Coffee Maker$49Appliances
P004Monitor$299Electronics

How it works

If we want to find the price of "Office Chair" (P002), we can use the following formula:

Looking up Price by Product ID

=VLOOKUP("P002", A2:D5, 3, FALSE)

This formula searches for "P002" in the first column of the range A2:D5, and returns the value from the 3rd column (Price).