0
0
Google Sheetsspreadsheet~20 mins

Column and bar charts in Google Sheets - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Chart Mastery Badge
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
2: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
A=COUNT(B2:B7)
B=SUM(A2:A7)
C=SUM(B2:B7)
D=AVERAGE(A2:A7)
Attempts:
2 left
💡 Hint
Sum the sales amounts, not the month names.
Function Choice
intermediate
2: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
ASUM(A:A)
BCOUNTIF(A:A, "Apple")
CAVERAGE(A:A)
DMAX(A:A)
Attempts:
2 left
💡 Hint
You want to count how many times a specific product appears.
🎯 Scenario
advanced
2: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?
AIncluding the header row A1:B1 causes the chart to misinterpret labels as data
BSelecting A1:B6 is correct; the problem is chart type
CThe values in B2:B6 are text, not numbers
DThe data range should include only column A
Attempts:
2 left
💡 Hint
Headers should be recognized as labels, not data points.
data_analysis
advanced
2: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?
ASales amount of Product 1 in Region A
BTotal sales of all products in Region A
CSales amount of Product 1 across all regions
DAverage sales of Product 1 in all regions
Attempts:
2 left
💡 Hint
Stacked columns show parts of a total.
🧠 Conceptual
expert
2: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?
APie chart
BStacked bar chart
CLine chart
DClustered column chart
Attempts:
2 left
💡 Hint
You want to see each product's sales per month separately.