Challenge - 5 Problems
Sparkline Mastery Badge
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate2:00remaining
What does this SPARKLINE formula display?
Given the data in cells A1:A5 as {5, 10, 15, 10, 5}, what type of sparkline will appear with this formula?
=SPARKLINE(A1:A5, {"charttype", "line"})Google Sheets
=SPARKLINE(A1:A5, {"charttype", "line"})Attempts:
2 left
💡 Hint
Think about what a line sparkline does with a range of numbers.
✗ Incorrect
The formula creates a line sparkline that connects the points 5, 10, 15, 10, 5, showing a peak at 15 in the middle.
📊 Formula Result
intermediate2:00remaining
What output does this BAR sparkline produce?
If cells B1:B4 contain {3, 6, 9, 12}, what will this formula show?
=SPARKLINE(B1:B4, {"charttype", "bar"})Google Sheets
=SPARKLINE(B1:B4, {"charttype", "bar"})Attempts:
2 left
💡 Hint
Bar sparklines show horizontal bars representing values.
✗ Incorrect
The bar sparkline draws horizontal bars for each value, so bars get longer as values increase from 3 to 12.
❓ Function Choice
advanced2:00remaining
Which SPARKLINE formula creates a column chart with red bars?
You want a column sparkline with red bars for data in C1:C6. Which formula is correct?
Attempts:
2 left
💡 Hint
Check the correct option name for bar color in column sparklines.
✗ Incorrect
Option A uses the correct charttype 'column' and the correct option 'color' to set bar color to red.
🎯 Scenario
advanced2:00remaining
Troubleshoot why a sparkline shows a flat line
You entered
=SPARKLINE(D1:D5, {"charttype", "line"}) but the sparkline shows a flat line even though data varies. What is the most likely cause?Attempts:
2 left
💡 Hint
Sparklines need numeric data to show variation.
✗ Incorrect
If the data range has text or blanks, the sparkline treats values as zero, resulting in a flat line.
❓ data_analysis
expert3:00remaining
Analyze the effect of missing options in SPARKLINE
Given data in E1:E7 as {2, 4, 6, 8, 6, 4, 2}, what will this formula display?
Choose the best description of the sparkline output.
=SPARKLINE(E1:E7)Choose the best description of the sparkline output.
Google Sheets
=SPARKLINE(E1:E7)
Attempts:
2 left
💡 Hint
SPARKLINE defaults to a line chart if no charttype is given.
✗ Incorrect
Without specifying charttype, SPARKLINE defaults to a line chart showing the data shape with a peak at 8.