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

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How do I change or locate the name of a chart in Powerpoint for reference in
a VB macro?
 
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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top