Complete the code to create a simple line sparkline for data in cells A1 to A5.
=SPARKLINE(A1:A5, {"charttype", [1])The charttype option set to "line" creates a line sparkline.
Complete the code to create a bar sparkline for data in cells B1 to B6.
=SPARKLINE(B1:B6, {"charttype", [1])Setting charttype to "bar" creates a bar sparkline.
Fix the error in the code to create a column sparkline for data in cells C1 to C7.
=SPARKLINE(C1:C7, {"charttype", [1])The correct chart type for vertical bars is "column".
Fill both blanks to create a line sparkline with a red line color for data in D1 to D5.
=SPARKLINE(D1:D5, {"charttype", [1]; "color", [2])Use "line" for the chart type and "red" for the color option.
Fill all three blanks to create a column sparkline with green bars and a max value of 100 for data in E1 to E8.
=SPARKLINE(E1:E8, {"charttype", [1]; "color", [2]; "max", [3])Set charttype to "column", color to "green", and max to 100.
