Complete the formula to look up the value in cell A2 within the range B2:B10 and return the corresponding value from C2:C10.
=XLOOKUP([1], B2:B10, C2:C10)The first argument in XLOOKUP is the value to find. Here, it should be the value in cell A2.
Complete the formula to return "Not found" if the lookup value in A5 is not found in the range B2:B10.
=XLOOKUP(A5, B2:B10, C2:C10, [1])The fourth argument in XLOOKUP is the value to return if the lookup value is not found. Here, it should be "Not found".
Fix the error in the formula to correctly look up the value in A3 in the range B2:B10 and return the matching value from C2:C10.
=XLOOKUP(A3, [1], C2:C10)The second argument is the lookup array where Excel searches for the lookup value. It should be B2:B10.
Fill both blanks to create a formula that looks up the value in A4 in B2:B10 and returns the matching value from C2:C10, or "Not found" if missing.
=XLOOKUP([1], [2], C2:C10, "Not found")
The first blank is the lookup value (A4), and the second blank is the lookup array (B2:B10).
Fill all three blanks to create a formula that looks up the uppercase version of the value in A6 in B2:B10 and returns the matching value from C2:C10, or "Not found" if missing.
=XLOOKUP([1], [2], [3], "Not found")
The first blank converts A6 to uppercase for lookup, the second is the lookup array B2:B10, and the third is the return array C2:C10.