PowerPoint - Remove presenter notes quickly from multiple slides

Need to get rid of notes from your slide deck? Here's how to do it in 3 simple steps!

By Bradley J. Kennedy

Instructions are for Mac Users. Windows users can find instructions in the blue/grey boxes.

Preparation

  • Duplicate your file so that your original, with all of the presenter notes, is not lost.

  • Download this file and save it somewhere you will be able to find it again in the future. (This is important!)

The file contains the code that will remove the notes from each slide with the press of one button.

For reference, this is the code that is contained within the file:

Attribute VB_Name = "NotesRemover"
Sub RemoveNotes()
Dim osld As Slide
For Each osld In ActivePresentation.Slides
With osld.NotesPage.Shapes(2)
If .HasTextFrame Then
.TextFrame.DeleteText
End If
End With
Next osld
End Sub

Step 1

While in your PowerPoint file, go up to the menu bar and navigate to:

Tools < Macro < Visual Basic Editor

:computer: Windows users: Press Alt + F11 to open the Visual Basic Editor.

Tools menu

A new window will appear… VB Window

Step 2

In the menu bar, navigate to:

File < Import file…

Locate the SlideNotesRemover.bas file you just downloaded, select it and press ‘Open’.

It may not look like much happened. But a folder called ‘Modules’ should have appeared in the Project Tree. This is good! The Macro is contained within this folder. Modules folder

Step 3

Click the PLAY button, and ‘Run’ the RemoveNotes Macro.

:computer: Windows users: This might look like a green triangle / play button. If you cannot find it, you can press F5 to run the Macro.

Play button

Again, it may not look like much has happened! BUT, close the Visual Basic window and you will find that all the notes have been removed from each slide! :tada:

One last note

When you come to save your file, you will get an alert to say that the Macros will be removed, THIS IS OK as you have the Macro file saved already! You can press ‘Remove Macros and Save’.

:computer: Windows users: You just need to press ‘Yes’ to the message that pops up.

Save message

Tags: tech tips
Share: X (Twitter) Facebook LinkedIn

Leave a Comment

Your email address will not be published. Required fields are marked *

Thanks for your comment! It will show on the site once it has been approved. Sorry, there was an error with your submission. Please make sure all required fields have been completed and try again.