0
0
Google Sheetsspreadsheet~5 mins

INDEX and MATCH combination in Google Sheets - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
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?
AThe sum of values in the range
BThe value found in the range
CThe position of the value in the range
DThe average of values in the range
Which function returns a value from a specific position in a range?
AINDEX
BSUM
CVLOOKUP
DMATCH
In the formula =INDEX(B2:B10, MATCH("Apple", A2:A10, 0)), what does the 0 in MATCH mean?
AFinds the closest match
BFinds an exact match
CIgnores case sensitivity
DSearches from bottom to top
Why might you choose INDEX and MATCH over VLOOKUP?
ABecause INDEX and MATCH are easier to write
BBecause VLOOKUP is slower
CBecause VLOOKUP can only sum values
DBecause INDEX and MATCH can look left and right
What will =INDEX(A1:C3, 2, 3) return?
AValue in row 2, column 3
BValue in row 1, column 3
CValue in row 3, column 2
DValue in row 3, column 1
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.