Excel Lookup — Free Excel Tutorial

Learn Excel Lookup in Excel with a free, beginner-friendly tutorial, examples and practice for Indian students on Syllab.in.

Excel Lookup — Free Excel Tutorial

Learn Excel Lookup in Excel with a free, beginner-friendly tutorial, examples and practice for Indian students on Syllab.in.

✓ 100% Free ✓ No Login Needed ✓ NCERT / CBSE Aligned ✓ Download as PDF

TL;DR: Learn Excel Lookup in Excel with a free, beginner-friendly tutorial, examples and practice for Indian students on Syllab.in.

Written & reviewed by the Syllab.in Academic Team (CBSE/NCERT subject experts) · Updated

🤖 Stuck on any question? Ask Syllab's free AI Tutor for a step-by-step explanation — instant, unlimited, no login.

Excel Lookup in Excel

Lookups pull a value from a table by matching a key — e.g. find a price given a product code, or a name given a roll number. VLOOKUP is the classic: `=VLOOKUP(key, table_range, column_number, FALSE)`. The final FALSE demands an exact match (almost always what you want). VLOOKUP searches the FIRST column of the table and returns a value from a column to its right.

VLOOKUP's weaknesses: it can only look to the right, and the column number breaks if you insert a column. The modern replacement is XLOOKUP: `=XLOOKUP(key, lookup_range, return_range)` — it can look left or right, and you point at the exact columns so inserting rows/columns doesn't break it. Use XLOOKUP if your Excel/Sheets supports it.

INDEX/MATCH is the powerful older alternative that also looks in any direction: `=INDEX(return_range, MATCH(key, lookup_range, 0))`. MATCH finds the position of the key; INDEX returns the value at that position. Knowing at least one robust lookup is essential for any data or office job.

Excel Lookup — Syntax

=VLOOKUP("P02", A2:C5, 3, FALSE)
=XLOOKUP("P02", A2:A5, C2:C5)

Learn Excel Lookup step by step with Syllab's free interactive Excel tutorial — runnable code examples, practice exercises and instant AI feedback, all free with no signup. Explore the full Excel course →