Recall & Review
beginner
What does the HLOOKUP function do in Excel?
HLOOKUP searches for a value in the first row of a table and returns a value in the same column from a row you specify.
Click to reveal answer
beginner
What are the four arguments of the HLOOKUP function?
The four arguments are:<br>1. lookup_value: the value to find in the first row.<br>2. table_array: the range of cells to search.<br>3. row_index_num: the row number to return a value from.<br>4. range_lookup: TRUE for approximate match or FALSE for exact match.
Click to reveal answer
beginner
How does setting the range_lookup argument to FALSE affect HLOOKUP?
Setting range_lookup to FALSE makes HLOOKUP look for an exact match only. If it doesn't find the exact value, it returns an error.
Click to reveal answer
beginner
Example: =HLOOKUP("Jan", A1:D3, 2, FALSE)<br>What does this formula do?
It looks for "Jan" in the first row of the range A1:D3. If found, it returns the value from the second row in the same column as "Jan". It requires an exact match.
Click to reveal answer
intermediate
What happens if HLOOKUP cannot find the lookup_value and range_lookup is TRUE?
HLOOKUP returns the closest smaller value found in the first row. The first row must be sorted in ascending order for this to work correctly.
Click to reveal answer
What row does HLOOKUP search for the lookup_value?
✗ Incorrect
HLOOKUP always searches the first row of the table_array for the lookup_value.
What does the row_index_num argument specify in HLOOKUP?
✗ Incorrect
row_index_num tells HLOOKUP which row's value to return from the matched column.
If you want an exact match with HLOOKUP, what should range_lookup be set to?
✗ Incorrect
Setting range_lookup to FALSE forces HLOOKUP to find an exact match.
What happens if HLOOKUP does not find an exact match and range_lookup is FALSE?
✗ Incorrect
With range_lookup FALSE, no exact match causes HLOOKUP to return an error.
For approximate match (range_lookup TRUE), what must be true about the first row?
✗ Incorrect
The first row must be sorted ascending for approximate match to work correctly.
Explain how the HLOOKUP function works and when you would use it.
Think about looking up a month name in a header row to find sales data below.
You got /4 concepts.
Describe the role of the range_lookup argument in HLOOKUP and how it affects the result.
Consider what happens if you want to find a price for a specific product code exactly or the closest available.
You got /4 concepts.