Challenge - 5 Problems
Chart Mastery Badge
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate2:00remaining
Calculate total sales for chart data
You have monthly sales data in cells A2:A7 and sales amounts in B2:B7. Which formula correctly calculates the total sales to be displayed in a chart summary?
Google Sheets
A2:A7 contains: Jan, Feb, Mar, Apr, May, Jun B2:B7 contains: 100, 150, 120, 130, 160, 140
Attempts:
2 left
💡 Hint
Sum the sales amounts, not the month names.
✗ Incorrect
The sales amounts are in B2:B7, so summing that range gives the total sales. Summing A2:A7 or averaging it doesn't make sense because those are text labels.
❓ Function Choice
intermediate2:00remaining
Choose the function to count categories
You want to create a bar chart showing how many times each product appears in a list in column A. Which function helps count the number of each product for the chart?
Google Sheets
Column A: Product names like Apple, Banana, Apple, Orange, Banana, Apple
Attempts:
2 left
💡 Hint
You want to count how many times a specific product appears.
✗ Incorrect
COUNTIF counts how many cells in a range match a condition. Here, it counts how many times "Apple" appears in column A.
🎯 Scenario
advanced2:00remaining
Fixing a bar chart with wrong data range
You created a bar chart but it shows empty bars. Your data is in A1:B6, with labels in A2:A6 and values in B2:B6. You accidentally selected A1:B6 as the data range. What is the likely cause?
Attempts:
2 left
💡 Hint
Headers should be recognized as labels, not data points.
✗ Incorrect
Including the header row in the data range can cause the chart to treat headers as data, resulting in empty or incorrect bars.
❓ data_analysis
advanced2:00remaining
Interpreting stacked column chart data
A stacked column chart shows sales by region for three products. If the total height of the column for Region A is 300, and the segment for Product 1 is 120, what does the 120 represent?
Attempts:
2 left
💡 Hint
Stacked columns show parts of a total.
✗ Incorrect
Each segment in a stacked column represents the value of that part (product) within the total for that category (region).
🧠 Conceptual
expert2:00remaining
Choosing chart type for comparing categories
You want to compare sales numbers of 5 products side by side for 4 different months. Which chart type best shows this comparison clearly?
Attempts:
2 left
💡 Hint
You want to see each product's sales per month separately.
✗ Incorrect
A clustered column chart shows groups of columns side by side for each category, making it easy to compare multiple products across months.