Exact Match VLOOKUP
Find a single precise record — vendor ID, account code, employee number.
Syntax
=VLOOKUP(lookup_value, table_array, col_index_num, 0)Example
=VLOOKUP(A2, Vendors!A:D, 3, 0)The final 0 (or FALSE) locks to exact matches only. If nothing matches, you get #N/A — which is correct behaviour: no silent wrong answers.
Pro tip
Always use 0 for accounting work. Approximate match on financial data causes invisible errors.