0
0
Excelspreadsheet~10 mins

Chart templates in Excel - Interactive Code Practice

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

Complete the code to save the current chart as a template.

Excel
ActiveChart.SaveChartTemplate "[1]"
Drag options to blanks, or click blank then click option'
ATemplate.docx
BMyChart.crtx
CChartTemplate.xlsx
DChart1
Attempts:
3 left
💡 Hint
Common Mistakes
Using a file extension other than .crtx
Not including any file extension
Using a document or workbook extension
2fill in blank
medium

Complete the code to apply a saved chart template to the active chart.

Excel
ActiveChart.ApplyChartTemplate "[1]"
Drag options to blanks, or click blank then click option'
ATemplate.docx
BChart1
CMyChart.crtx
DTemplate.xlsx
Attempts:
3 left
💡 Hint
Common Mistakes
Using a wrong file extension
Using a document or workbook file instead of a chart template
Not specifying the file name
3fill in blank
hard

Fix the error in the code to save the chart template correctly.

Excel
ActiveChart.SaveChartTemplate "[1]"
Drag options to blanks, or click blank then click option'
AMyChart.crtx
BMyChart.docx
CMyChart.xlsx
DMyChart
Attempts:
3 left
💡 Hint
Common Mistakes
Omitting the file extension
Using Excel workbook or document extensions
Using an invalid filename
4fill in blank
hard

Fill both blanks to create a new chart and apply a saved template.

Excel
Set ch = Charts.Add()
ch.ChartType = [1]
ch.ApplyChartTemplate "[2]"
Drag options to blanks, or click blank then click option'
AxlColumnClustered
BxlLine
CMyTemplate.crtx
DTemplate.docx
Attempts:
3 left
💡 Hint
Common Mistakes
Using invalid chart type constants
Using wrong file extensions for the template
Mixing document files with chart templates
5fill in blank
hard

Fill all three blanks to save a chart template, create a new chart, and apply the template.

Excel
ActiveChart.SaveChartTemplate "[1]"
Set newChart = Charts.Add()
newChart.ChartType = [2]
newChart.ApplyChartTemplate "[3]"
Drag options to blanks, or click blank then click option'
ASalesTemplate.crtx
BxlPie
DReport.docx
Attempts:
3 left
💡 Hint
Common Mistakes
Using wrong file extensions for templates
Using invalid chart type constants
Applying templates with incorrect filenames