Challenge - 5 Problems
Chart Interactivity Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate2:00remaining
Output of FILTER formula linked to chart
You have a data table with sales in column A and months in column B. You use
=FILTER(A2:A13, B2:B13=E1) to show sales for the month typed in cell E1. If E1 contains "March", what will the FILTER formula output?Attempts:
2 left
💡 Hint
FILTER returns rows matching the condition you give it.
✗ Incorrect
FILTER returns only the sales values where the month matches the text in E1. So if E1 is "March", only sales for March appear.
❓ Function Choice
intermediate2:00remaining
Best function to create interactive chart data
You want to create a chart that updates automatically when you select a category from a dropdown in cell D1. Which function is best to use to filter data dynamically for the chart?
Attempts:
2 left
💡 Hint
You need to return multiple rows based on a condition.
✗ Incorrect
FILTER returns multiple rows that meet a condition, perfect for dynamic chart data based on dropdown selection.
🎯 Scenario
advanced2:00remaining
Chart does not update when dropdown changes
You created a chart based on a FILTER formula that depends on a dropdown in cell B1. But when you change the dropdown, the chart does not update. What is the most likely reason?
Attempts:
2 left
💡 Hint
Check what data the chart is using.
✗ Incorrect
If the chart is linked to the original data range, it won't reflect changes in the FILTER output. The chart must use the FILTER formula output range.
❓ data_analysis
advanced2:00remaining
Number of data points in interactive chart
You have a data table with 100 rows. You use
=FILTER(A2:A101, C2:C101=F1) where F1 is a dropdown with 5 categories. If category "X" appears 20 times in column C, how many data points will the chart show when "X" is selected?Attempts:
2 left
💡 Hint
FILTER returns only rows matching the condition.
✗ Incorrect
FILTER returns all rows where column C equals "X". Since "X" appears 20 times, the chart will show 20 data points.
📊 Formula Result
expert3:00remaining
Output of dynamic chart data with multiple conditions
Given data in columns A (Sales), B (Month), and C (Region), what is the output of this formula?
If E1 is "April" and F1 is "East", what does this formula return?
=FILTER(A2:A20, (B2:B20=E1)*(C2:C20=F1))If E1 is "April" and F1 is "East", what does this formula return?
Attempts:
2 left
💡 Hint
Multiplying conditions means both must be true.
✗ Incorrect
The formula filters sales where both conditions are true: Month equals E1 and Region equals F1. Multiplying conditions acts like AND.