0
0
Excelspreadsheet~10 mins

Why charts visualize data clearly in Excel - Test Your Understanding

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to create a chart title in Excel.

Excel
ActiveSheet.ChartObjects(1).Chart.HasTitle = [1]
Drag options to blanks, or click blank then click option'
ATrue
BNone
C0
DFalse
Attempts:
3 left
💡 Hint
Common Mistakes
Using False disables the title.
Using 0 or None causes errors.
2fill in blank
medium

Complete the formula to calculate the total sales in cell B10.

Excel
=SUM(B2[1]B9)
Drag options to blanks, or click blank then click option'
A,
B:
C;
D-
Attempts:
3 left
💡 Hint
Common Mistakes
Using comma instead of colon breaks the range.
Using semicolon is for different locales.
3fill in blank
hard

Fix the error in the formula to calculate average sales in cell B11.

Excel
=AVERAGE([1])
Drag options to blanks, or click blank then click option'
AB2,B9
BB2-B9
CB2:B9
DB2;B9
Attempts:
3 left
💡 Hint
Common Mistakes
Using dash creates subtraction, not range.
Using semicolon may cause errors depending on locale.
4fill in blank
hard

Fill both blanks to create a bar chart from data in range A1:B5.

Excel
ActiveSheet.Shapes.AddChart2([1], [2]).Chart.SetSourceData Source:=Range("A1:B5")
Drag options to blanks, or click blank then click option'
A51
BxlBarClustered
CxlColumnClustered
D100
Attempts:
3 left
💡 Hint
Common Mistakes
Using column chart type instead of bar chart.
Using wrong style number causes unexpected appearance.
5fill in blank
hard

Fill all three blanks to add data labels showing values on the chart.

Excel
With ActiveSheet.ChartObjects(1).Chart.SeriesCollection(1).[1]
  .[2] = [3]
End With
Drag options to blanks, or click blank then click option'
ADataLabels
BShowValue
CTrue
DLegendEntries
Attempts:
3 left
💡 Hint
Common Mistakes
Using LegendEntries instead of DataLabels.
Setting ShowValue to False hides values.