How do I change the Current Slide in VBA

  • Thread starter Thread starter babelfish
  • Start date Start date
B

babelfish

I am developing a Presentation where I have a Commnad Button and once
clicked depending on the value in a drop down jump to a different
slide. How would I go about doing that?

Thanks.
 
The basic code for going to another slide is

ActivePresentation.SlideShowWindow.View.GotoSlide 27

where 27 is the slide number to go to. You can make 27 a variable and
figure out the value of the variable based on something else.

--David

--
David M. Marcovitz
Microsoft PowerPoint MVP
Director of Graduate Programs in Educational Technology
Loyola College in Maryland
Author of _Powerful PowerPoint for Educators_
http://www.PowerfulPowerPoint.com/
 
Back
Top