G Guest Sep 20, 2006 #1 How do I change or locate the name of a chart in Powerpoint for reference in a VB macro?
S Steve Rindsberg Sep 24, 2006 #2 How do I change or locate the name of a chart in Powerpoint for reference in a VB macro? Click to expand... 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
How do I change or locate the name of a chart in Powerpoint for reference in a VB macro? Click to expand... 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