0
0
Excelspreadsheet~20 mins

Dropdown lists from validation in Excel - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Dropdown List Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
1:30remaining
Output of dropdown list selection formula
You have a dropdown list in cell A1 with options: Apple, Banana, Cherry. Cell B1 contains the formula =IF(A1="Banana", "Yellow", "Other"). What will be the value in B1 if you select "Banana" from the dropdown in A1?
A#VALUE!
BYellow
COther
DBanana
Attempts:
2 left
💡 Hint
Think about what the IF formula checks and returns based on the dropdown choice.
Function Choice
intermediate
1:00remaining
Choosing the right function to create a dropdown list
Which Excel feature or function is used to create a dropdown list for data validation?
AData Validation with List option
BVLOOKUP function
CSUM function
DConditional Formatting
Attempts:
2 left
💡 Hint
Dropdown lists come from a special feature under the Data tab.
🎯 Scenario
advanced
2:00remaining
Dynamic dropdown list with named range
You want a dropdown list in cell A1 that updates automatically when you add new items to the list in cells B1:B5. You create a named range called 'Fruits' referring to B1:B5. Which formula should you enter in the Data Validation source box to make the dropdown dynamic?
A=INDIRECT("B1:B5")
B=B1:B5
C=OFFSET(B1,0,0,COUNTA(B:B),1)
D=Fruits
Attempts:
2 left
💡 Hint
Named ranges can be used directly in Data Validation source.
📊 Formula Result
advanced
1:30remaining
Result of INDIRECT function in dropdown source
You have a named range 'Colors' referring to cells C1:C4. In Data Validation source, you enter the formula =INDIRECT("Colors"). What will the dropdown list show?
AThe list of values in cells C1 to C4
BThe text 'Colors'
CAn error message
DEmpty dropdown list
Attempts:
2 left
💡 Hint
INDIRECT converts text to a reference.
data_analysis
expert
2:30remaining
Analyzing error in dropdown list source formula
You set up a dropdown list with Data Validation source formula: =OFFSET(Sheet1!$A$1,0,0,COUNTA(Sheet1!$A:$A),1). When you add a new item in column A, the dropdown does not update correctly and shows extra blank entries. What is the most likely cause?
AOFFSET function syntax is incorrect and causes error
BData Validation does not support OFFSET function
CCOUNTA counts all non-empty cells including header, causing extra blanks
DThe formula should use COUNT instead of COUNTA
Attempts:
2 left
💡 Hint
Think about what COUNTA counts in the column including headers.