Complete the formula to find the value in column B that matches the lookup value in cell E2 using MATCH.
=INDEX(B2:B10, [1](E2, A2:A10, 0))
The MATCH function finds the position of the lookup value in the range A2:A10, which INDEX then uses to return the corresponding value from B2:B10.
Complete the formula to find the row number of the lookup value in A2:A20 using MATCH with exact match.
=MATCH([1], A2:A20, 0)
The lookup value is in cell B2, so MATCH uses B2 to find its position in A2:A20.
Fix the error in the formula to correctly return the value from column C matching the lookup value in E3.
=INDEX(C2:C15, MATCH(E3, [1], 0))
The MATCH function should search the lookup value E3 in the key column A2:A15, not in column C.
Fill both blanks to create a formula that returns the value from column D where the lookup value in F2 matches column A.
=INDEX([1], MATCH(F2, [2], 0))
INDEX returns a value from D2:D20, and MATCH finds the position of F2 in A2:A20.
Fill all three blanks to create a formula that returns the value from column C where the lookup value in G3 matches column B, using exact match.
=INDEX([1], MATCH([2], [3], 0))
INDEX returns from C2:C25, MATCH looks for G3 in B2:B25 with exact match (0).