Hi.
I need to change every month the title of a 25 different graph. Totday the title of the graph is "October" I have to change all the titles in "November"
a simple code is:
Sub Macro1()
ActiveSheet.ChartObjects("Chart 1").Activate
ActiveChart.ChartTitle.Select
Selection.Characters.Text = "November"
End Sub
does anyone have a code to cycle among the graphs and change the title of them without knowing that every single graph's name. Infact usually We delete and create new graphs and we really don't know if the name of the graph od "Chart 1" or "Chart 234".
Thanks
I need to change every month the title of a 25 different graph. Totday the title of the graph is "October" I have to change all the titles in "November"
a simple code is:
Sub Macro1()
ActiveSheet.ChartObjects("Chart 1").Activate
ActiveChart.ChartTitle.Select
Selection.Characters.Text = "November"
End Sub
does anyone have a code to cycle among the graphs and change the title of them without knowing that every single graph's name. Infact usually We delete and create new graphs and we really don't know if the name of the graph od "Chart 1" or "Chart 234".
Thanks