0
0
Excelspreadsheet~5 mins

INDEX-MATCH combination in Excel - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
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?
AThe position of the lookup value in the range
BThe value found in the lookup range
CThe sum of values in the range
DThe average of values in the range
Which function returns a value from a specific row and column in a range?
AMATCH
BINDEX
CSUM
DVLOOKUP
Why is INDEX-MATCH preferred over VLOOKUP in many cases?
ABecause it only works with numbers
BBecause it automatically sorts data
CBecause it is faster to type
DBecause it can look up values to the left and is more flexible
In the formula =INDEX(B2:B10, MATCH("Apple", A2:A10, 0)), what does the 0 mean?
AExact match
BIgnore errors
CApproximate match
DMatch first letter only
If MATCH cannot find the lookup value, what happens?
AIt returns the last value in the range
BIt returns 0
CIt returns #N/A error
DIt returns the first value in the range
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.