Complete the formula to look up the value in cell A2 in the first row of the table in range B1:D3.
=HLOOKUP([1], B1:D3, 2, FALSE)
The first argument of HLOOKUP is the value to find. Here, it should be the value in cell A2.
Complete the formula to return the value from the third row of the table in range A1:C3 for the lookup value in cell B1.
=HLOOKUP(B1, A1:C3, [1], FALSE)The third argument is the row index from which to return the value. To get the third row, use 3.
Fix the error in the formula to correctly find the value in the first row of range A1:D2 for the lookup value in cell C1.
=HLOOKUP(C1, A1:D2, [1], TRUE)The row index must be at least 1. Using 1 returns values from the first row.
Fill both blanks to create a formula that looks up the value in cell A1 in the first row of range B1:E3 and returns the value from the second row, using exact match.
=HLOOKUP([1], B1:E3, [2], FALSE)
The first blank is the lookup value cell A1. The second blank is the row index 2 to get the second row's value.
Fill all three blanks to create a formula that looks up the value in cell B2 in the first row of range A1:D4, returns the value from the fourth row, and uses approximate match.
=HLOOKUP([1], A1:D4, [2], [3])
The lookup value is B2, the row index is 4 to get the fourth row, and TRUE means approximate match.