Challenge - 5 Problems
Dropdown Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate1: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", ",")
Attempts:
2 left
💡 Hint
Think about how SPLIT separates text by commas.
✗ Incorrect
The SPLIT function splits the text at each comma, creating separate options: Red, Green, and Blue.
❓ Function Choice
intermediate1: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?
Attempts:
2 left
💡 Hint
Dropdown menus are set up in the menu, not by a formula.
✗ Incorrect
Dropdown menus are created using Data Validation in the menu, where you select the range B1:B5 as the source.
🎯 Scenario
advanced2: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?
Attempts:
2 left
💡 Hint
You want unique names sorted alphabetically.
✗ Incorrect
Using SORT(UNIQUE(A:A)) returns a sorted list of unique names from column A, perfect for a dynamic dropdown.
❓ data_analysis
advanced1: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")Attempts:
2 left
💡 Hint
Think about what happens if no values meet the condition.
✗ Incorrect
If no values in B1:B10 are greater than 'Apple', FILTER returns an empty list, so the dropdown will have no options.
🧠 Conceptual
expert2: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?
Attempts:
2 left
💡 Hint
Think about how to reference a range dynamically based on a cell value.
✗ Incorrect
Using INDIRECT in the second dropdown's data validation allows it to refer to a named range or range named after the first dropdown's choice, creating dependency.