How do I change the name of a chart in Powerpoint?

  • Thread starter Thread starter Guest
  • Start date Start date
How do I change or locate the name of a chart in Powerpoint for reference in
a VB macro?

You can do this just as you would any other shape:

Select it then run something like this:

Sub StituteANewName()
With ActiveWindow.Selection.ShapeRange(1)
.Name = "Whatever you like"
End With
End Sub
 
Back
Top