Recall & Review
beginner
What does the INDEX function do in Google Sheets?
The INDEX function returns the value of a cell at a specific row and column in a given range.
Click to reveal answer
beginner
What is the purpose of the MATCH function in Google Sheets?
MATCH finds the position of a value in a range, returning the relative row or column number.
Click to reveal answer
intermediate
How do INDEX and MATCH work together?
MATCH finds the position of a value, and INDEX uses that position to return the actual value from another range.
Click to reveal answer
intermediate
Write a simple formula using INDEX and MATCH to find a price in a product list.
Example: =INDEX(B2:B10, MATCH("Apple", A2:A10, 0))<br>This finds 'Apple' in A2:A10 and returns the price from B2:B10 at the same row.
Click to reveal answer
advanced
Why is INDEX and MATCH combination better than VLOOKUP?
INDEX and MATCH can look left or right, is faster on large data, and doesn’t break if columns are added or removed.
Click to reveal answer
What does MATCH return in Google Sheets?
✗ Incorrect
MATCH returns the position (row or column number) of the searched value within the range.
Which function returns a value from a specific position in a range?
✗ Incorrect
INDEX returns the value at a given row and column in a range.
In the formula =INDEX(B2:B10, MATCH("Apple", A2:A10, 0)), what does the 0 in MATCH mean?
✗ Incorrect
The 0 tells MATCH to find an exact match.
Why might you choose INDEX and MATCH over VLOOKUP?
✗ Incorrect
INDEX and MATCH can look up values to the left or right, unlike VLOOKUP which only looks right.
What will =INDEX(A1:C3, 2, 3) return?
✗ Incorrect
INDEX returns the value at row 2, column 3 of the range A1:C3.
Explain how you would use INDEX and MATCH together to find a value in a table.
Think about how MATCH locates the row and INDEX retrieves the data.
You got /3 concepts.
Describe one advantage of using INDEX and MATCH over VLOOKUP.
Consider flexibility and reliability when table structure changes.
You got /3 concepts.