0
0
Google Sheetsspreadsheet~5 mins

XLOOKUP function in Google Sheets - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What does the XLOOKUP function do in Google Sheets?
XLOOKUP searches a range or array for a value and returns a matching value from another range or array. It helps find data quickly, like looking up a friend's phone number by their name.
Click to reveal answer
beginner
What is the basic syntax of the XLOOKUP function?
The syntax is =XLOOKUP(search_key, lookup_range, return_range, [if_not_found], [match_mode], [search_mode]). You give it what to find, where to look, and what to return.
Click to reveal answer
intermediate
What happens if XLOOKUP does not find the search key and you provide the if_not_found argument?
XLOOKUP will return the value you put in if_not_found instead of an error. For example, you can show "Not found" instead of an error message.
Click to reveal answer
intermediate
How can you use XLOOKUP to find the closest match instead of an exact match?
Use the match_mode argument and set it to -1 for next smaller item or 1 for next larger item. This helps when exact matches might not exist.
Click to reveal answer
intermediate
Why is XLOOKUP better than VLOOKUP or HLOOKUP?
XLOOKUP is more flexible: it can look left or right, up or down, and doesn’t require sorted data. It also handles missing values better and is easier to read.
Click to reveal answer
What is the first argument in the XLOOKUP function?
AThe range to return values from
BThe value to return if not found
CThe range to search in
DThe value to search for
If XLOOKUP does not find a match and no if_not_found is given, what happens?
AIt returns zero
BIt returns the first value in the return range
CIt returns an error
DIt returns blank
Which argument lets you choose approximate matching in XLOOKUP?
Aif_not_found
Bmatch_mode
Csearch_mode
Dreturn_range
Can XLOOKUP search from bottom to top?
AYes, using search_mode argument
BNo, it only searches top to bottom
COnly if data is sorted
DOnly with VLOOKUP
Which of these is NOT a benefit of XLOOKUP over VLOOKUP?
ARequires sorted data
BCan look left or right
CHandles missing values better
DSupports approximate matches
Explain how to use XLOOKUP to find a price of a product by its name in a list.
Think about what you want to find, where to look, and what to get back.
You got /4 concepts.
    Describe how XLOOKUP handles cases when the search value is not found.
    Consider what happens if you don’t tell XLOOKUP what to do when no match exists.
    You got /3 concepts.