View Single Post
 
Old 11-21-2013, 12:39 PM
hudsontucker13 hudsontucker13 is offline Windows XP Office 2010 64bit
Novice
 
Join Date: Dec 2012
Posts: 8
hudsontucker13 is on a distinguished road
Default run multiple actions with macro

Hello,

I am using the following macro to print a specific page in my powerpoint when a button is pushed and it works great. Can I add to this macro to also make it advance to a specific page once the button is pushed. Thanks in advance for the help.


Sub printme()
With ActivePresentation.PrintOptions
.RangeType = ppPrintSlideRange
With .Ranges
.ClearAll
.Add Start:=24, End:=24
End With
.NumberOfCopies = 1
.OutputType = ppPrintOutputSlides
.PrintHiddenSlides = msoTrue
.PrintColorType = ppPrintColor
.FitToPage = msoTrue
.FrameSlides = msoFalse
End With
ActivePresentation.PrintOut
End Sub
Reply With Quote