0
0
Google Sheetsspreadsheet~10 mins

VLOOKUP function in Google Sheets - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the formula to look up the value in cell A2 in the range B2:D10.

Google Sheets
=VLOOKUP(A2, [1], 2, FALSE)
Drag options to blanks, or click blank then click option'
AA2:D10
BB2:D10
CB2:C10
DA1:D10
Attempts:
3 left
💡 Hint
Common Mistakes
Using a range that does not include the lookup column.
Including the lookup value cell in the range.
2fill in blank
medium

Complete the formula to return the value from the 3rd column of the range when looking up the value in A5.

Google Sheets
=VLOOKUP(A5, C2:E20, [1], FALSE)
Drag options to blanks, or click blank then click option'
A2
B1
C4
D3
Attempts:
3 left
💡 Hint
Common Mistakes
Using the actual spreadsheet column number instead of the relative column index in the range.
Using a column index outside the range.
3fill in blank
hard

Fix the error in the formula to perform an exact match lookup for the value in B3.

Google Sheets
=VLOOKUP(B3, A1:C15, 2, [1])
Drag options to blanks, or click blank then click option'
A1
BTRUE
CFALSE
D0
Attempts:
3 left
💡 Hint
Common Mistakes
Leaving the last argument empty or TRUE for exact match needs.
Using 0 or 1 which are not valid boolean values here.
4fill in blank
hard

Fill both blanks to create a formula that looks up the value in D4 in the range A2:C12 and returns the value from the 3rd column with an exact match.

Google Sheets
=VLOOKUP([1], [2], 3, FALSE)
Drag options to blanks, or click blank then click option'
AD4
BA2:C12
CB2:D12
DC4
Attempts:
3 left
💡 Hint
Common Mistakes
Using a range that does not include the lookup column.
Using a wrong cell reference for the lookup value.
5fill in blank
hard

Fill all four blanks to create a formula that looks up the value in cell B1 in the range A1:D20, returns the value from the 4th column, and performs an exact match.

Google Sheets
=VLOOKUP([1], [2], [3], [4])
Drag options to blanks, or click blank then click option'
AB1
BA1:D20
C4
DFALSE
Attempts:
3 left
💡 Hint
Common Mistakes
Using TRUE or omitting the last argument for exact match.
Using a column index outside the range.