0
0
Google Sheetsspreadsheet~5 mins

HLOOKUP function in Google Sheets - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What does the HLOOKUP function do in Google Sheets?
HLOOKUP looks for a value in the top row of a table and returns a value in the same column from a row you specify.
Click to reveal answer
beginner
What is the syntax of the HLOOKUP function?
HLOOKUP(search_key, range, row_index, [is_sorted])<br><br>search_key: value to find<br>range: table to search<br>row_index: row number to return value from<br>is_sorted: TRUE for approximate match, FALSE for exact match or omitted
Click to reveal answer
beginner
What happens if you set the is_sorted argument to FALSE in HLOOKUP?
HLOOKUP will look for an exact match of the search_key in the top row. If it doesn't find it, it returns an error.
Click to reveal answer
intermediate
How does HLOOKUP behave if is_sorted is TRUE or omitted?
HLOOKUP assumes the top row is sorted and returns the closest match less than or equal to the search_key. This is an approximate match.
Click to reveal answer
beginner
Give a real-life example where HLOOKUP can be useful.
Imagine a price list where product names are in the top row and prices are below. Use HLOOKUP to find the price of a product by its name.
Click to reveal answer
What does the 'row_index' argument in HLOOKUP specify?
AThe value to search for
BThe column number to search in
CThe row number in the range to return the value from
DWhether to do an exact or approximate match
If you want an exact match in HLOOKUP, what should you set 'is_sorted' to?
AFALSE
BTRUE
COmit it
DAny number
Where does HLOOKUP search for the search_key?
AIn the top row of the range
BIn the last row of the range
CIn the first column of the range
DIn the entire range
What will HLOOKUP return if it cannot find an exact match and 'is_sorted' is FALSE?
AThe closest smaller value
BThe last value in the range
CThe first value in the range
DAn error
Which function is similar to HLOOKUP but searches vertically?
ASUM
BVLOOKUP
CMATCH
DINDEX
Explain how to use HLOOKUP to find a value in a table and what each argument means.
Think about what you want to find, where you look, and which row to get the result from.
You got /6 concepts.
    Describe a situation where HLOOKUP is better than VLOOKUP.
    Consider how your data is laid out in rows vs columns.
    You got /4 concepts.