0
0
Excelspreadsheet~5 mins

HLOOKUP function in Excel - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
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?
AFirst column of the table_array
BFirst row of the table_array
CLast row of the table_array
DLast column of the table_array
What does the row_index_num argument specify in HLOOKUP?
AThe number of matches to find
BThe column number to search
CThe row number to return a value from
DThe number of rows to skip
If you want an exact match with HLOOKUP, what should range_lookup be set to?
AFALSE
BTRUE
C0
D1
What happens if HLOOKUP does not find an exact match and range_lookup is FALSE?
AReturns the closest smaller value
BReturns the first value in the row
CReturns zero
DReturns an error
For approximate match (range_lookup TRUE), what must be true about the first row?
AIt must be sorted in ascending order
BIt must be sorted in descending order
CIt must contain only numbers
DIt must have unique values
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.