View Full Version : [SLEEPER:] Macro for deleting slides in Powerpoint from number 60 to 246
penoxcz
06-09-2018, 05:07 AM
Hi is there a way to delete slides from slide number 60 to slide number 246? Thanks!
Aussiebear
12-28-2024, 12:46 PM
Maybe try this method?
Sub DeleteSlides()
Dim i As Long
' Loop through slides backwards to avoid index issues
For i = 246 To 60 Step -1
ActivePresentation.Slides(i).Delete
Next i
End Sub
Powered by vBulletin® Version 4.2.5 Copyright © 2025 vBulletin Solutions Inc. All rights reserved.