Introduction
When working with Excel in financial modeling, relying only on VLOOKUP or HLOOKUP can be limiting. That’s where the INDEX MATCH formula combination shines. If you are searching for an index match practice exercises xls download, this post gives you exactly that — a free file with practice problems and solutions to master lookups in Excel.
What is INDEX + MATCH?
- INDEX: Returns a value from a range based on row/column numbers.
- MATCH: Finds the position of a value in a row/column.
- Combined: Together, they allow dynamic lookups (more flexible than VLOOKUP/HLOOKUP).
Formula Pattern:
=INDEX(return_range, MATCH(lookup_value, lookup_range, 0))
Practice Dataset
We’ll use a Sales Data Table:
Product ID | Product Name | Category | Region | Sales |
---|---|---|---|---|
101 | Laptop | Electronics | North | 5000 |
102 | Phone | Electronics | South | 3000 |
103 | Chair | Furniture | East | 1500 |
104 | Desk | Furniture | West | 2500 |
105 | Monitor | Electronics | North | 4000 |
INDEX MATCH Practice Problems
- Find the sales of “Phone”.
- Get the Region for Product ID 104.
- Find the Category of “Monitor”.
- Lookup Sales for Product ID 101.
- Find the Product Name sold in the East region.
- Return the Region for Product Name = Chair.
- Find Sales where Product ID = 105.
- Get Category for Product ID 102.
- Find Product Name for Sales = 2500.
- Lookup Region for Product Name = Laptop.
INDEX MATCH Practice Exercises XLS Solutions
=INDEX(E2:E6, MATCH("Phone", B2:B6, 0)) → 3000
=INDEX(D2:D6, MATCH(104, A2:A6, 0)) → West
=INDEX(C2:C6, MATCH("Monitor", B2:B6, 0)) → Electronics
=INDEX(E2:E6, MATCH(101, A2:A6, 0)) → 5000
=INDEX(B2:B6, MATCH("East", D2:D6, 0)) → Chair
=INDEX(D2:D6, MATCH("Chair", B2:B6, 0)) → East
=INDEX(E2:E6, MATCH(105, A2:A6, 0)) → 4000
=INDEX(C2:C6, MATCH(102, A2:A6, 0)) → Electronics
=INDEX(B2:B6, MATCH(2500, E2:E6, 0)) → Desk
=INDEX(D2:D6, MATCH("Laptop", B2:B6, 0)) → North
What You’ll Learn from This Template
This INDEX MATCH practice exercises XLS will help you:
- Build flexible lookups in any direction (not just left-to-right).
- Replace VLOOKUP/HLOOKUP in financial models.
- Create dynamic, scalable formulas for real-world Excel reporting.
Ready to start? Download the free practice file here and begin mastering INDEX MATCH today.