Sub CopyTitle()
Dim chtChart As Chart
On Error Resume Next
For Each chtChart In ActiveWorkbook.Charts
chtChart.ChartTitle.Characters.Text = "Multiplication Form C"
Next chtChart
End Sub
-------------------
Instead of copying a chart title into each chart, I need to change the minimum and maximum values on both the axis and secondary axis.
Any help is appreciated. Thanks
Dim chtChart As Chart
On Error Resume Next
For Each chtChart In ActiveWorkbook.Charts
chtChart.ChartTitle.Characters.Text = "Multiplication Form C"
Next chtChart
End Sub
-------------------
Instead of copying a chart title into each chart, I need to change the minimum and maximum values on both the axis and secondary axis.
Any help is appreciated. Thanks