I am trying to create a macro that opens a pp, and then move forward one slide and make it my active slide. I feel like there is a simple solution to this but i cant seem to find a code to move me forward one slide. so far i have
Private Sub OpenPowerpoint()
' Opens Presentation.pptx
Dim PPT As PowerPoint.Application
Set PPT = New PowerPoint.Application
PPT.Visible = True
PPT.Presentations.Open Filename:="C:\Users\Person\Desktop\Test\Template.pptx"
End Sub
which open my pp on the first slide.