Complete the formula to look up the value in cell A2 within the range B2:B10.
=XLOOKUP([1], B2:B10, C2:C10)The first argument in XLOOKUP is the value to search for. Here, we want to find the value in cell A2.
Complete the formula to return the value from the range C2:C10 that matches the lookup value in A2.
=XLOOKUP(A2, B2:B10, [1])The third argument is the return array. We want to return values from C2:C10 that match the lookup.
Fix the error in the formula to return "Not found" if the lookup value in A2 is missing.
=XLOOKUP(A2, B2:B10, C2:C10, [1])The fourth argument is the value to return if no match is found. We want to show "Not found" as text.
Fill both blanks to make the formula search for the value in A5, look in B5:B15, and return from C5:C15.
=XLOOKUP([1], [2], C5:C15)
The first blank is the lookup value cell A5. The second blank is the lookup array B5:B15.
Fill all three blanks to create a formula that looks up the value in A3, searches in B3:B12, returns from C3:C12, and shows "Missing" if not found.
=XLOOKUP([1], [2], [3], "Missing")
The blanks correspond to lookup value A3, lookup array B3:B12, and return array C3:C12.