ZonoTools

Excel Practice - VLOOKUP

Instruction

Use VLOOKUP to find a product price based on product code.

Formula Syntax

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

  • lookup_value: The value to find.
  • table_array: The table range that contains lookup data.
  • col_index_num: The return column position in the table (starting at 1).
  • [range_lookup]: Optional match mode: FALSE for exact match, TRUE for approximate match.

What it does

Use VLOOKUP to find a product price based on product code.

product-catalog.xlsx

ABC
1CodeNamePrice
2P-101Mouse19
3P-102Keyboard45
4P-103Monitor199
5P-104USB Hub29
6P-105Headset59
7Output

Input Formula

Need Help?

Tips

  • Use VLOOKUP with clean and consistent ranges for predictable results.
  • Validate data types (number, text, date) before applying the formula.
  • Test the formula with a small sample first, then scale it to larger ranges.