Challenge - 5 Problems
Dropdown List Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate1: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?Attempts:
2 left
💡 Hint
Think about what the IF formula checks and returns based on the dropdown choice.
✗ Incorrect
The formula checks if A1 equals "Banana". If true, it returns "Yellow"; otherwise, it returns "Other". Since you select "Banana", B1 shows "Yellow".
❓ Function Choice
intermediate1: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?
Attempts:
2 left
💡 Hint
Dropdown lists come from a special feature under the Data tab.
✗ Incorrect
Dropdown lists are created using Data Validation with the List option, not by formulas or formatting.
🎯 Scenario
advanced2: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?
Attempts:
2 left
💡 Hint
Named ranges can be used directly in Data Validation source.
✗ Incorrect
Using the named range 'Fruits' (=Fruits) in the source box makes the dropdown use that range and update when the range changes.
📊 Formula Result
advanced1: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?Attempts:
2 left
💡 Hint
INDIRECT converts text to a reference.
✗ Incorrect
INDIRECT("Colors") returns the range that the name 'Colors' refers to, so the dropdown shows the values in C1:C4.
❓ data_analysis
expert2: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?Attempts:
2 left
💡 Hint
Think about what COUNTA counts in the column including headers.
✗ Incorrect
COUNTA counts all non-empty cells including the header, so OFFSET includes the header row and possibly blank cells below, causing extra blanks in dropdown.