Complete the formula to merge two tables by matching IDs using VLOOKUP.
=VLOOKUP(A2, [1], 2, FALSE)
The formula uses VLOOKUP to find the value in A2 within the first column of Table2 (columns A and B) and returns the matching value from the second column.
Complete the formula to merge two tables using INDEX and MATCH to find the price for a product ID.
=INDEX(Table2!B:B, MATCH([1], Table2!A:A, 0))
MATCH looks for the value in A2 within Table2 column A, then INDEX returns the corresponding value from column B.
Fix the error in the formula to merge two tables by correcting the range reference.
=VLOOKUP(A2, [1], 3, FALSE)
The lookup range must start with the column containing the lookup value (column A). Using Table2!A:C ensures the first column is the lookup column and includes the third column for the return value.
Fill both blanks to create a formula that merges two tables and returns the product name for a matching ID.
=INDEX([1], MATCH(A2, [2], 0))
INDEX returns the product name from Table2 column B. MATCH finds the position of A2 in Table2 column A to align the lookup.
Fill all three blanks to create a formula that merges two tables and returns the price if the quantity is greater than 10.
=IF(B2 [1] 10, INDEX([2], MATCH(A2, [3], 0)), "")
The IF checks if quantity in B2 is greater than 10. If true, INDEX and MATCH return the price from Table2 column B matching the ID in A2 found in Table2 column A. Otherwise, it returns an empty string.