SlideShowView.LastSlideViewed Property (PowerPoint)
Returns a Slide object that represents the slide viewed immediately before the current slide in the specified slide show view.
Syntax
expression .LastSlideViewed
expression A variable that represents a SlideShowView object.
Return Value
Slide
Example
This example takes you to the slide viewed immediately before the current slide in slide show window one.
With SlideShowWindows(1).View
.GotoSlide (.LastSlideViewed.SlideIndex)
End With