I used to use the following code:
ActivePresentation.Slides(3).Shapes("Name").TextFrame.TextRange.Text = TBN.Value
But I want to change the Shapes("Name") which is present inside a SlideLayout. How do I do that?
ActivePresentation.SlideLayout26.Shapes("Name").TextFrame.TextRange.Text = TBN.Value
The above code hasn't worked.
Thank you.