0
0
Google Sheetsspreadsheet~20 mins

Line charts in Google Sheets - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Line Chart Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
1:30remaining
Calculate the average sales for a line chart
You have monthly sales data in cells A2:A13. Which formula correctly calculates the average sales to be used as a reference line in your line chart?
A=AVERAGE(A2:A13)
B=SUM(A2:A13)
C=COUNT(A2:A13)
D=MAX(A2:A13)
Attempts:
2 left
💡 Hint

Think about the formula that finds the middle value of a range.

Function Choice
intermediate
1:30remaining
Choose the function to create a cumulative total for a line chart
You want to show a running total of sales over months in a line chart. Which formula in cell B2, copied down, correctly calculates the cumulative total from sales in column A?
A=SUM(A$2:A2)
B=SUM(A2:A$13)
C=SUM($A$2:A2)
D=SUM(A2:A2)
Attempts:
2 left
💡 Hint

Look for a formula that fixes the start of the range but allows the end to move down as you copy.

🎯 Scenario
advanced
2:00remaining
Identify the correct data range for a line chart with multiple series
You have sales data for three products in columns B, C, and D from rows 2 to 13. Column A has the months. You want to create a line chart showing all three products over time. Which data range should you select?
AB2:D13
BA1:D13
CA2:D13
DA1:C13
Attempts:
2 left
💡 Hint

Remember to include the header row and the column with months for the chart to label the x-axis correctly.

data_analysis
advanced
1:30remaining
Analyze the effect of missing data points on a line chart
If your sales data for some months is missing (cells are blank) in a line chart, what will Google Sheets do by default when plotting the line?
AIt will show an error message and not create the chart
BIt will break the line at missing points, showing gaps
CIt will treat missing data as zero and plot accordingly
DIt will connect the points with a straight line, skipping the missing data
Attempts:
2 left
💡 Hint

Think about how line charts usually handle missing points to keep the trend visible.

🧠 Conceptual
expert
2:00remaining
Determine the number of data points plotted in a line chart
You create a line chart using data in cells A1:B10. Column A has dates, and column B has sales values. If cells B4 and B7 are empty, how many points will the line chart plot?
A9 points
B10 points
C8 points
D7 points
Attempts:
2 left
💡 Hint

Count how many sales values are not empty in the range.