0
0
Google Sheetsspreadsheet~5 mins

VLOOKUP function in Google Sheets - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What does the VLOOKUP function do in Google Sheets?
VLOOKUP searches for a value in the first column of a range and returns a value in the same row from another column you specify.
Click to reveal answer
beginner
What are the four arguments of the VLOOKUP function?
The four arguments are:<br>1. search_key: The value to find.<br>2. range: The table to search in.<br>3. index: The column number in the range to return the value from.<br>4. is_sorted: TRUE for approximate match, FALSE for exact match.
Click to reveal answer
beginner
What happens if you set the is_sorted argument to FALSE in VLOOKUP?
VLOOKUP looks for an exact match of the search_key. If it doesn't find one, it returns an error (#N/A).
Click to reveal answer
beginner
Why should the search_key be in the first column of the range in VLOOKUP?
Because VLOOKUP always searches for the search_key in the first column of the range. If it's not there, it won't find the value.
Click to reveal answer
beginner
How do you use VLOOKUP to find a price of an item named "Apple" in a list where names are in column A and prices in column B?
Use =VLOOKUP("Apple", A:B, 2, FALSE). It looks for "Apple" in column A and returns the price from column B.
Click to reveal answer
In VLOOKUP, what does the 'index' argument specify?
AThe column number in the range to return the value from
BThe row number to search
CThe value to find
DWhether to sort the data
What will VLOOKUP return if it cannot find an exact match and is_sorted is FALSE?
AZero
BThe closest match
CThe first value in the range
DAn error (#N/A)
Where does VLOOKUP look for the search_key in the range?
AIn the first column
BIn the middle column
CIn the last column
DIn any column
Which formula correctly finds the price of "Banana" in columns A (names) and B (prices)?
A=VLOOKUP("Banana", B:A, 1, TRUE)
B=VLOOKUP("Banana", A:B, 1, FALSE)
C=VLOOKUP("Banana", A:B, 2, FALSE)
D=VLOOKUP("Banana", A:B, 3, FALSE)
What does setting is_sorted to TRUE do in VLOOKUP?
ARequires exact match only
BAllows approximate match and requires sorted data
CReturns an error if no match
DSearches backwards
Explain how to use VLOOKUP to find information in a table. Include what each argument means.
Think about looking up a friend's phone number in a contact list.
You got /4 concepts.
    Describe a common mistake when using VLOOKUP and how to fix it.
    Imagine looking for a name in the wrong column.
    You got /4 concepts.