0
0
Google Sheetsspreadsheet~20 mins

Chart interactivity in Google Sheets - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Chart Interactivity Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
2: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?
AOnly the first sales value from column A
BAn error because FILTER cannot use text criteria
CAll sales values from column A where the month in column B is "March"
DAll sales values from column A regardless of month
Attempts:
2 left
💡 Hint
FILTER returns rows matching the condition you give it.
Function Choice
intermediate
2: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?
AFILTER
BVLOOKUP
CSUM
DARRAYFORMULA
Attempts:
2 left
💡 Hint
You need to return multiple rows based on a condition.
🎯 Scenario
advanced
2: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?
AThe chart is linked to the original data, not the FILTER formula output
BThe dropdown cell B1 is locked and cannot change
CFILTER formula has a syntax error
DCharts never update automatically in Google Sheets
Attempts:
2 left
💡 Hint
Check what data the chart is using.
data_analysis
advanced
2: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?
A0
B5
C100
D20
Attempts:
2 left
💡 Hint
FILTER returns only rows matching the condition.
📊 Formula Result
expert
3: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?

=FILTER(A2:A20, (B2:B20=E1)*(C2:C20=F1))

If E1 is "April" and F1 is "East", what does this formula return?
AAn error because FILTER cannot handle multiple conditions
BSales values where Month is "April" AND Region is "East"
CAll sales values regardless of Month or Region
DSales values where Month is "April" OR Region is "East"
Attempts:
2 left
💡 Hint
Multiplying conditions means both must be true.