0
0
Excelspreadsheet~5 mins

MATCH function in Excel - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What does the MATCH function do in Excel?
The MATCH function finds the position of a value in a range or array. It tells you where the value is located, not the value itself.
Click to reveal answer
beginner
Syntax of the MATCH function?
MATCH(lookup_value, lookup_array, [match_type])<br><br>lookup_value: The value to find.<br>lookup_array: The range to search.<br>match_type: Optional; 1 for less than or equal, 0 for exact, -1 for greater than or equal.
Click to reveal answer
intermediate
What does the match_type argument do in MATCH?
It controls how Excel matches the lookup_value:<br>- 1 (default): Finds the largest value less than or equal to lookup_value (requires sorted ascending).<br>- 0: Finds exact match.<br>- -1: Finds smallest value greater than or equal to lookup_value (requires sorted descending).
Click to reveal answer
beginner
What happens if MATCH can’t find the lookup_value?
MATCH returns the #N/A error, meaning it did not find the value in the lookup_array.
Click to reveal answer
intermediate
How can MATCH be used with INDEX?
MATCH finds the position of a value, and INDEX uses that position to return the actual value from a range. Together, they can look up values dynamically.
Click to reveal answer
What does MATCH(A2, B1:B10, 0) do?
AFinds the exact position of A2’s value in B1:B10
BFinds the largest value less than or equal to A2 in B1:B10
CFinds the smallest value greater than or equal to A2 in B1:B10
DReturns the value from B1:B10 matching A2
If MATCH returns #N/A, what does it mean?
AThe formula syntax is wrong
BThe lookup_value was found multiple times
CThe lookup_array is empty
DThe lookup_value was not found in the lookup_array
Which match_type requires the lookup_array to be sorted ascending?
A0
B-1
C1
DAny match_type
What position does MATCH return if the lookup_value is the first item in the lookup_array?
A0
B1
CThe value itself
D#N/A
How can MATCH help when combined with INDEX?
ATo find the position of a value and then get the value at that position
BTo sort data automatically
CTo sum values in a range
DTo count how many times a value appears
Explain how the MATCH function works and what each argument means.
Think about how MATCH finds a value’s place in a list.
You got /5 concepts.
    Describe a real-life example where you would use MATCH in a spreadsheet.
    Imagine looking up a student’s rank or a product’s position in a list.
    You got /4 concepts.