Complete the formula to look up the value in the first row and return the value from the second row.
=HLOOKUP(A1, B1:D2, [1], FALSE)The HLOOKUP function looks for a value in the first row of a range and returns a value from the specified row number. Here, to get the value from the second row, use 2.
Complete the formula to perform a case-insensitive exact match lookup.
=HLOOKUP("Apple", A1:D2, 2, [1])
The last argument in HLOOKUP specifies if the match should be approximate (TRUE) or exact (FALSE). For exact match, use FALSE.
Fix the error in the formula to correctly return the value from the third row.
=HLOOKUP(B1, A1:D3, [1], FALSE)The row index must be 3 to get the value from the third row in the range.
Fill both blanks to create a formula that looks up the value in cell C1, searches the range A1:E3, and returns the value from the second row with an exact match.
=HLOOKUP([1], [2], 2, FALSE)
The first blank is the lookup value cell C1. The second blank is the range A1:E3 where the lookup happens.
Fill all three blanks to create a formula that looks up the value in cell B2, searches the range A1:D4, and returns the value from the fourth row with an exact match.
=HLOOKUP([1], [2], [3], FALSE)
The lookup value is cell B2, the range is A1:D4, and the row index is 4 to get the fourth row's value.