Complete the formula to find the value in the first column of the range A2:B6 that matches the lookup value in D2.
=INDEX(A2:A6, MATCH([1], B2:B6, 0))
The MATCH function looks for the value in cell D2 within the range B2:B6. INDEX then returns the value from A2:A6 at the position MATCH finds.
Complete the formula to find the price of the item named in cell E3 from the table in A2:B6.
=INDEX(B2:B6, MATCH([1], A2:A6, 0))
MATCH finds the position of the item name in E3 within the list A2:A6. INDEX returns the price from B2:B6 at that position.
Fix the error in the formula to correctly find the quantity of the product in cell F4 from the table in A2:C6.
=INDEX(C2:C6, MATCH([1], A2:A6, 0))
The MATCH function should look for the product name in F4 within A2:A6. INDEX returns the quantity from C2:C6 at that position.
Fill both blanks to create a formula that finds the department name in column B for the employee ID in cell G5 from the table A2:C6.
=INDEX([1], MATCH(G5, [2], 0))
INDEX uses the department names in B2:B6. MATCH finds the position of the employee ID in G5 within A2:A6.
Fill all three blanks to create a formula that finds the salary in column C for the employee name in cell H6 from the table A2:C6.
=INDEX([1], MATCH([2], [3], 0))
INDEX returns the salary from C2:C6. MATCH finds the position of the employee name in H6 within B2:B6.