View Single Post
 
Old 03-10-2020, 06:41 AM
noslenwerd noslenwerd is offline Windows 10 Office 2016 for Mac
Novice
 
Join Date: Dec 2019
Posts: 15
noslenwerd is on a distinguished road
Default

Quote:
Originally Posted by JohnWilson View Post
You can name the selected slide easily
Code:
ActiveWindow.Selection.SlideRange(1).name="myName"
The names must be unique and you can refer to the slide with
Code:
ActivePresentation.Slides("myName")
Hi John,

Thank you for this. Great info.

Now what if I hand this project off to someone and they have no idea what I named my 100 slides. Is there code that will list the names of ALL slides? Or better yet all slides, and the index (position) of said slides?
Reply With Quote