0
0
Google Sheetsspreadsheet~20 mins

Dropdown menus in Google Sheets - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Dropdown Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
1:30remaining
What is the output of this dropdown formula?
You have a dropdown list in cell A1 created with the formula =SPLIT("Red,Green,Blue", ","). What will be the list of options shown in the dropdown?
Google Sheets
=SPLIT("Red,Green,Blue", ",")
ARed Green Blue
BRed;Green;Blue
CRed, Green, Blue
DRed|Green|Blue
Attempts:
2 left
💡 Hint
Think about how SPLIT separates text by commas.
Function Choice
intermediate
1:30remaining
Which function creates a dropdown list from a range?
You want to create a dropdown menu in Google Sheets that shows all values from cells B1 to B5. Which function helps you do this?
ADATA_VALIDATION(B1:B5)
BINDIRECT(B1:B5)
CARRAYFORMULA(B1:B5)
DNo function needed; use Data Validation with range B1:B5
Attempts:
2 left
💡 Hint
Dropdown menus are set up in the menu, not by a formula.
🎯 Scenario
advanced
2:00remaining
Dynamic dropdown list that updates automatically
You want a dropdown menu in cell D1 that always shows all unique names from column A, even when new names are added. Which formula should you use as the source in Data Validation?
A=SORT(UNIQUE(A:A))
B=FILTER(A:A, A:A<>"")
C=UNIQUE(A:A)
D=ARRAYFORMULA(A1:A)
Attempts:
2 left
💡 Hint
You want unique names sorted alphabetically.
data_analysis
advanced
1:30remaining
Identify the error in dropdown list source formula
A user tries to create a dropdown list with this formula as source: =FILTER(B1:B10, B1:B10>"Apple"). What error or issue will occur?
Google Sheets
=FILTER(B1:B10, B1:B10>"Apple")
ADropdown will be empty if no values are greater than 'Apple'
BError because comparison with text needs ARRAYFORMULA
CSyntax error due to missing quotes
DNo error; dropdown shows all values greater than 'Apple'
Attempts:
2 left
💡 Hint
Think about what happens if no values meet the condition.
🧠 Conceptual
expert
2:30remaining
How to create dependent dropdown menus in Google Sheets?
You want to create two dropdown menus: the second menu's options depend on the first menu's choice. Which approach correctly achieves this?
AUse SPLIT function in the first dropdown to separate options for the second
BUse VLOOKUP in the first dropdown to filter second dropdown options
CUse INDIRECT function in the second dropdown's data validation referencing the first dropdown's cell
DCreate both dropdowns with fixed lists; dependent behavior is automatic
Attempts:
2 left
💡 Hint
Think about how to reference a range dynamically based on a cell value.