0
0
Google Sheetsspreadsheet~20 mins

Why advanced charts tell deeper stories in Google Sheets - Challenge Your Understanding

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Advanced Chart Storyteller
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🎯 Scenario
intermediate
2:00remaining
Choosing the Right Chart Type for Sales Data

You have monthly sales data for three products over a year. You want to show how each product's sales trend changes over time and compare them clearly. Which chart type in Google Sheets best tells this story?

ALine chart with months on the X-axis and sales on the Y-axis for each product
BPie chart showing total sales per product for the year
CScatter plot with sales on both axes
DBar chart showing total sales per month combining all products
Attempts:
2 left
💡 Hint

Think about showing trends over time for multiple items.

📊 Formula Result
intermediate
2:00remaining
Calculate Percentage Change for Chart Labels

You have sales data in column B for January and column C for February. You want to calculate the percentage change from January to February for each product in column D to use as labels in your chart. What formula in D2 correctly calculates this?

Google Sheets
=(C2-B2)/B2*100
A=(B2-C2)/C2*100
B=(C2-B2)/B2*100
C=(B2-C2)/B2*100
D=(C2-B2)/C2*100
Attempts:
2 left
💡 Hint

Percentage change is (new - old) divided by old, times 100.

data_analysis
advanced
2:00remaining
Identifying Outliers in Sales Data Using Conditional Formatting

You want to highlight sales values in column B that are more than 20% higher than the average sales in that column. Which custom formula for conditional formatting will correctly highlight these outliers?

A=B2 > AVERAGE(B:B) * 1.2
B=B2 > AVERAGE(B$2:B$100) * 1.2
C=B2 > AVERAGE($B$2:$B$100) * 1.2
D=B2 > AVERAGE(B2:B100) * 1.2
Attempts:
2 left
💡 Hint

Use absolute references to fix the range for all rows.

Function Choice
advanced
2:00remaining
Best Function to Aggregate Sales by Region

You have a table with sales data including a 'Region' column and a 'Sales' column. You want to create a summary table showing total sales per region. Which Google Sheets function is best suited for this?

ASUMIF(range, criteria, sum_range)
BVLOOKUP(search_key, range, index, [is_sorted])
CCOUNTIF(range, criteria)
DARRAYFORMULA(range)
Attempts:
2 left
💡 Hint

Think about summing values based on matching criteria.

🧠 Conceptual
expert
3:00remaining
Why Use Combo Charts for Complex Data Stories?

You have monthly revenue and profit margin data. Revenue is large numbers, profit margin is a percentage. You want to show both clearly on one chart to tell a deeper story. Why is a combo chart the best choice?

AIt converts all data to percentages for uniform display.
BIt combines all data into one axis, making it easier to read.
CIt automatically highlights the highest revenue month without extra setup.
DIt allows plotting revenue as bars and profit margin as a line with separate Y-axes for clear comparison.
Attempts:
2 left
💡 Hint

Think about showing different types of data with different scales on one chart.