Complete the code to save the current chart as a template.
ActiveChart.SaveChartTemplate "[1]"
You must provide a filename with the .crtx extension to save a chart template in Excel.
Complete the code to apply a saved chart template to the active chart.
ActiveChart.ApplyChartTemplate "[1]"
To apply a chart template, you must specify the template file with the .crtx extension.
Fix the error in the code to save the chart template correctly.
ActiveChart.SaveChartTemplate "[1]"
The filename must include the .crtx extension to save as a chart template.
Fill both blanks to create a new chart and apply a saved template.
Set ch = Charts.Add() ch.ChartType = [1] ch.ApplyChartTemplate "[2]"
Use a valid chart type constant like xlColumnClustered and apply a saved template with the .crtx file.
Fill all three blanks to save a chart template, create a new chart, and apply the template.
ActiveChart.SaveChartTemplate "[1]" Set newChart = Charts.Add() newChart.ChartType = [2] newChart.ApplyChartTemplate "[3]"
Save the template with a .crtx file, use a valid chart type like xlPie, and apply the saved template file.