Recall & Review
beginner
What does the INDEX function do in Excel?
The INDEX function returns the value of a cell at a specific row and column in a given range or array.
Click to reveal answer
beginner
What is the purpose of the MATCH function in Excel?
MATCH finds the position of a value in a row or column and returns its relative position number.
Click to reveal answer
intermediate
Why combine INDEX and MATCH instead of using VLOOKUP?
INDEX-MATCH is more flexible because it can look left or right, works with large data, and is less error-prone when columns change.
Click to reveal answer
beginner
Write a simple INDEX-MATCH formula to find the price of an item named "Apple" in a list where A2:A10 has items and B2:B10 has prices.
The formula is: <br>
=INDEX(B2:B10, MATCH("Apple", A2:A10, 0)) <br> It finds "Apple" in A2:A10 and returns the price from B2:B10 at the same row.Click to reveal answer
beginner
What does the '0' mean in the MATCH function inside INDEX-MATCH?
The '0' tells MATCH to look for an exact match of the lookup value.
Click to reveal answer
What does the MATCH function return?
✗ Incorrect
MATCH returns the position number of the lookup value within the specified range.
Which function returns a value from a specific row and column in a range?
✗ Incorrect
INDEX returns the value at a given row and column in a range or array.
Why is INDEX-MATCH preferred over VLOOKUP in many cases?
✗ Incorrect
INDEX-MATCH can look left or right and is more flexible when columns change.
In the formula =INDEX(B2:B10, MATCH("Apple", A2:A10, 0)), what does the 0 mean?
✗ Incorrect
The 0 tells MATCH to find an exact match of "Apple".
If MATCH cannot find the lookup value, what happens?
✗ Incorrect
MATCH returns #N/A error if the lookup value is not found.
Explain how the INDEX-MATCH combination works to find a value in a table.
Think about how MATCH and INDEX work together step-by-step.
You got /3 concepts.
Describe a situation where using INDEX-MATCH is better than VLOOKUP.
Consider limitations of VLOOKUP and how INDEX-MATCH overcomes them.
You got /3 concepts.