How to add an empty slide in microsoft powerpoint while presenting?

I like the way PowerPoint gives features to the teacher to teach. I use it to teach my students. Currently, I add as many empty slides I may need to use it as a blackboard. But, suppose, I want to insert an empty slide in between, while presenting, is there a way to do it?

If that so, I might completely go with PowerPoint for my online classes.

If the default not allowing us to do it, is there any VB code to do the same?

2 Answers

@Esteban's suggestion allows you to blank the screen, but the blanked screen won't allow you to draw on it (assuming that's what you meant by "use it as a blackboard". With VBA you can add a new slide though:

Sub AddNewSlide() Dim lCurrentSlide As Long ' Determine what slide we're on: lCurrentSlide = SlideShowWindows(1).View.Slide.SlideIndex ' Count the number of layouts in your slide master ' and determine which # is the blank layout ' Use that in place of 7 below if it's different Call ActivePresentation.Slides.AddSlide(lCurrentSlide + 1, _ ActivePresentation.SlideMaster.CustomLayouts(7))
End Sub

Press ALT+F11 to get into the VBA editor, add a new module and paste the code above into the new module.

Then go into your slide master and add a shape to it; give the shape an action setting of Run Macro (AddNewSlide)

During a show, clicking the shape will add a new blank slide after the current slide.
If you don't want the shape visible, you can give it no outline and a 100% transparent fill.

3

You cannot add a slide while presenting, but you can blank your your slide by just pressing 'b' if you want it black or 'w' if you want it white. If you want to quit this, just press b or w again. Good luck!

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like