VLOOKUP with an Exact Match
You have an ID, name, or code in one table and need to pull matching details — a price, a department, an email — from another table.
Excel & Google Sheets
This formula works in both Excel and Google Sheets.
How it works
VLOOKUP searches the first column of the range A2:B10 for the value in E2. When it finds an exact match, it returns the value from the 2nd column of that range. The FALSE at the end is critical: it forces an exact match. Without it, VLOOKUP assumes your data is sorted and returns the nearest smaller value — which silently produces wrong answers on unsorted data.
When to use it
Use VLOOKUP when the value you're matching on sits to the left of the value you want returned. If it sits to the right, use XLOOKUP or INDEX + MATCH instead.
Common mistakes
Did this formula help?
Engine-verified against the sample data aboveLast reviewed 2026-07-08