How do I delete all of a slide content but its title with VBA?

Yes, it is handy to be able to automatically delete slides from a PowerPoint presentation There are instances, however, when it might be smarter to delete the content of a slide rather than the whole slide. What you can use in such cases is the VBA snippet below, which will loop through all slides of … Continue reading How do I delete all of a slide content but its title with VBA?

How do I show the Slide ID of a single slide?

If you've decided that the logic of using Slide IDs to deleteĀ (or otherwise update) slides in a presentation is the way you'd like to proceed towards VBA coding your PowerPoint updates, you will undoubtedly need a handy way of deciphering the precise values of those Slide IDs that you have in your presentation. A super … Continue reading How do I show the Slide ID of a single slide?

How do I only delete certain slides in a presentation?

One thing you're likely to discover when developing a robust approach for automatic updates is that you might have to come up with a way of scrapping the previous update and replacing it with the latest one. At least that's what I came to painfully realize a month after I fully coded my PowerPoint slides … Continue reading How do I only delete certain slides in a presentation?