ZonoTools

Excel Practice - INDEX MATCH

Instruction

Combine INDEX and MATCH to return the department for employee ID 1003.

Formula Syntax

=INDEX(return_range, MATCH(lookup_value, lookup_range, 0))

  • return_range: The range/array that returns the matched result.
  • MATCH(lookup_value: The value to find.
  • lookup_range: The range/array used for lookup.
  • 0): Function input parameter.

What it does

Combine INDEX and MATCH to return the department for employee ID 1003.

employee-table.xlsx

ABC
1IDNameDepartment
21001LiamDesign
31002MiaSales
41003NoahFinance
51004OliviaSupport
61005PaulEngineering
7Output

Input Formula

Need Help?

Tips

  • Use INDEX.MATCH 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.