How do I reverse the order of all my slides in a presentation?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

My slides were entered from 35 mm transparencies in total reverse order;
other than painfully going over each one, is there a global reverse command?
Thanks
 
There is no built-in method as such. You can use the following short macro
to reverse all slides in the presentation:

---
Sub ReverseAllSlides()
Dim Sld As Slide

With ActivePresentation
For Each Sld In .Slides
Sld.MoveTo 1
Next
End With
End Sub
---

- Chirag

PowerShow - View multiple PowerPoint slide shows simultaneously
http://officeone.mvps.org/powershow/powershow.html
 
Back
Top