PowerPoint powerpoint vba gotoslide based on title

Joined
Oct 1, 2010
Messages
1
Reaction score
0
I have a farily large powerpoint file with links to other slides within the same presentation. Sometimes they work, sometimes they bring me to the wrong slide. I've seen threads about Powerpoint issues with too many links. The best solution seems to be to write some vba code and use macros for action settings instead of hyperlinking.
I'd like to be able to transition to a slide that has a title equal to the text I put into the textbox (which I give an action setting to).
I've scoped out threads from multiple forums but can't figure out how I would go about this.
I've tried various approaches including this real simple one:

Sub test()
On Error Resume Next
With SlideShowWindows(1).View
.GotoSlide (TextFrame.TextRange.Text)
End With
End Sub

Any insight much appreciated!
 

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

Top