Reordering Slides

K

krystieobrien

I have a presentation that has about 375 slides and I need to reorder them
from back to front. Is there a quick way to do this without physically
dragging each slide in the slide sorter mode?
 
B

Bill Dilworth

Really?? That's kinda weird, but ok.

This little Macro will do the trick
-----
Sub Redroer()
With ActivePresentation.Slides
For i = 1 To .Count
.Item(i).MoveTo 1
Next i
End With
End Sub
-----

If you need help with how to use macros and VBA code, look here...
http://www.pptfaq.com/FAQ00033.htm


Bill Dilworth
 

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