Recall & Review
beginner
What does the VLOOKUP function do in Excel?
VLOOKUP searches for a value in the first column of a table and returns a value in the same row from a specified column.
Click to reveal answer
beginner
What are the four arguments of the VLOOKUP function?
The four arguments are:<br>1. Lookup_value: The value to find.<br>2. Table_array: The range where to search.<br>3. Col_index_num: The column number to return the value from.<br>4. Range_lookup: TRUE for approximate match, FALSE for exact match.
Click to reveal answer
beginner
What happens if you set the Range_lookup argument to FALSE?
VLOOKUP will look for an exact match of the lookup value. If it doesn't find one, it returns #N/A error.
Click to reveal answer
intermediate
How does VLOOKUP behave if the lookup value is not in the first column of the table array?
VLOOKUP only searches in the first column of the table array. If the lookup value is not there, it will not find it and may return #N/A.
Click to reveal answer
beginner
Why might you use FALSE instead of TRUE for the Range_lookup argument?
Using FALSE ensures you get an exact match, which is safer when you want precise data, like looking up a product code or ID.
Click to reveal answer
What does the third argument in VLOOKUP specify?
✗ Incorrect
The third argument tells VLOOKUP which column's value to return from the table.
If you want VLOOKUP to find an exact match, what should the fourth argument be?
✗ Incorrect
FALSE tells VLOOKUP to find an exact match.
Where does VLOOKUP look for the lookup value in the table array?
✗ Incorrect
VLOOKUP always searches for the lookup value in the first column of the table array.
What error does VLOOKUP return if it can’t find the lookup value with exact match?
✗ Incorrect
VLOOKUP returns #N/A when it cannot find the lookup value.
Which of these is a correct VLOOKUP formula to find a price in column 3 for product ID in A2 within range B2:D10?
✗ Incorrect
Option D correctly uses A2 as lookup value, B2:D10 as table, column 3 for price, and FALSE for exact match.
Explain how to use VLOOKUP to find a person's phone number from a list where names are in the first column and phone numbers in the second.
Think about what you want to find, where to look, and which column has the answer.
You got /4 concepts.
Describe what happens if the lookup value is not found when using VLOOKUP with exact match.
Consider the result when the value is missing and how VLOOKUP signals it.
You got /3 concepts.