Challenge - 5 Problems
Sparkline Master
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 10, 20, 15, 25, 30, what is the output of the formula
=SPARKLINE(A1:A5, {"charttype","line"}) in cell B1?Attempts:
2 left
💡 Hint
Think about what a line sparkline shows for a series of numbers.
✗ Incorrect
The SPARKLINE function with charttype 'line' creates a small line chart showing the trend of the data in the range. Since the values increase overall from 10 to 30, the line rises.
❓ Function Choice
intermediate2: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?
Attempts:
2 left
💡 Hint
Check the correct option name for chart type in SPARKLINE options.
✗ Incorrect
The correct option to specify chart type is "charttype" with the value "column" inside an array. Option C uses the correct syntax.
🎯 Scenario
advanced2: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?
Attempts:
2 left
💡 Hint
Look for the option name that matches highlighting the highest point.
✗ Incorrect
The option "highpoint" set to TRUE highlights the highest value in the sparkline. Other option names are invalid and cause errors or no effect.
📊 Formula Result
advanced2:00remaining
What error occurs with this sparkline formula?
What error will this formula produce?
=SPARKLINE(A1:A5, {"charttype","pie"})Attempts:
2 left
💡 Hint
Check which chart types SPARKLINE supports.
✗ Incorrect
SPARKLINE supports only line, column, and winloss chart types. Pie chart is not supported and causes a #VALUE! error.
❓ data_analysis
expert3: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?
Attempts:
2 left
💡 Hint
Think about how to apply SPARKLINE to multiple columns at once.
✗ Incorrect
Using ARRAYFORMULA with SPARKLINE allows creating sparklines for each column in the range separately. Option D tries to create one sparkline for all data, which is invalid. Options B and C are invalid syntax.