Complete the formula to find the position of the value 50 in the range A1:A10.
=MATCH(50, A1:A10, [1])
The third argument in MATCH specifies the match type. Use 0 for an exact match.
Complete the formula to find the position of "Apple" in the range B2:B20 with an exact match.
=MATCH("Apple", B2:B20, [1])
Use 0 for exact match. Although FALSE coerces to 0, MATCH expects numeric -1, 0, or 1 for match_type.
Fix the error in the formula to find the position of 100 in C1:C15 with exact match.
=MATCH(100, C1:C15, [1])
The third argument must be 0 for exact match. Although FALSE coerces to 0, use the numeric value.
Fill both blanks to find the position of the value in cell D5 within range E1:E20 with exact match.
=MATCH([1], [2], 0)
The first argument is the lookup value (D5). The second is the lookup range (E1:E20).
Fill all three blanks to find the position of the text in cell F3 within range G1:G30 with approximate match.
=MATCH([1], [2], [3])
Use F3 as lookup value, G1:G30 as range, and 1 for approximate match.