0
0
Excelspreadsheet~20 mins

Sparklines in Excel - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Sparkline Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
2:00remaining
What does this sparkline formula display?
Given the data in cells A1:A5 as 10, 20, 15, 25, 30, what is the output of the formula =SPARKLINE(A1:A5, {"charttype","line"}) in cell B1?
AA small line chart showing a rising trend from 10 to 30
BA bar chart with bars of equal height
CA pie chart representing the values
DAn error message because SPARKLINE does not accept ranges
Attempts:
2 left
💡 Hint
Think about what a line sparkline shows for a series of numbers.
Function Choice
intermediate
2:00remaining
Which formula creates a column sparkline?
You want to create a column sparkline for data in cells B2:B6. Which formula will do this correctly?
A=SPARKLINE(B2:B6, "column")
B=SPARKLINE(B2:B6, {"type","line"})
C=SPARKLINE(B2:B6, {"charttype","column"})
D=SPARKLINE(B2:B6, {"chart","column"})
Attempts:
2 left
💡 Hint
Check the correct option name for chart type in SPARKLINE options.
🎯 Scenario
advanced
2:30remaining
How to highlight the highest value in a sparkline?
You have sales data in C1:C10 and want to create a line sparkline in D1 that highlights the highest value point. Which option should you add to the SPARKLINE formula?
A{"highpoint", TRUE}
B{"maxpoint", TRUE}
C{"highlightmax", TRUE}
D{"peak", TRUE}
Attempts:
2 left
💡 Hint
Look for the option name that matches highlighting the highest point.
📊 Formula Result
advanced
2:00remaining
What error occurs with this sparkline formula?
What error will this formula produce? =SPARKLINE(A1:A5, {"charttype","pie"})
ADisplays a pie chart sparkline correctly
B#VALUE! error because pie chart is not supported in SPARKLINE
C#REF! error due to invalid range
DNo error, but shows a blank cell
Attempts:
2 left
💡 Hint
Check which chart types SPARKLINE supports.
data_analysis
expert
3:00remaining
Analyzing multiple sparklines for trends
You have monthly sales data for 3 products in columns A, B, and C (rows 1 to 12). You create sparklines in D1, E1, and F1 for each product's data. Which formula correctly creates sparklines for all three products in one step using array formula?
A=SPARKLINE(A1:C12, {"charttype","line"})
B=SPARKLINE(A1:A12, {"charttype","line"}) & SPARKLINE(B1:B12, {"charttype","line"}) & SPARKLINE(C1:C12, {"charttype","line"})
C=SPARKLINE(A1:A12, {"charttype","line"}), SPARKLINE(B1:B12, {"charttype","line"}), SPARKLINE(C1:C12, {"charttype","line"})
D=ARRAYFORMULA(SPARKLINE(A1:C12, {"charttype","line"}))
Attempts:
2 left
💡 Hint
Think about how to apply SPARKLINE to multiple columns at once.