Delete All Notes in PowerPoint Presentations (3 Ways)
by Avantix Learning Team | Updated May 30, 2022
Applies to: Microsoft® PowerPoint® 2016, 2019, 2021 and 365 (Windows or Mac)
You can quickly remove all speaker notes in a PowerPoint presentation in several ways. The easiest way to delete speaker notes is to use the Inspector (which is available only on Windows PCs). However, since this feature isn't currently available for the Mac version of PowerPoint, Mac users will need to use other strategies to remove notes.
Recommended article: How to Add and Format Notes in PowerPoint
Do you want to learn more about PowerPoint? Check out our virtual classroom or in-person PowerPoint courses >
In this article, we'll review 3 ways to remove notes in PowerPoint:
- Use the Inspector (Windows)
- Save the presentation in PDF format (Windows or Mac)
- Create and run a macro (Windows or Mac)
Remove speaker notes using the Inspector
The Inspector is a useful tool that is available in the Windows version of PowerPoint and can remove notes and other elements from a PowerPoint presentation. You can access the Inspector through the File tab in the Ribbon and clicking Check for Issues.
To remove all speaker notes from a PowerPoint presentation using the Inspector:
- Open the PowerPoint presentation with the notes you want to delete.
- Save a copy of the presentation so you can keep the original with the notes.
- In the copy, click the File tab in the Ribbon.
- Click Info and click Check for Issues. A drop-down menu appears.
- Select Inspect Document. A dialog box appears.
- Ensure that Presentation Notes is checked (you may need to scroll down in the dialog box). Check or select other options are needed.
- Click Inspect. If there are speaker notes in the file, Remove All will appear to the right of notes. If you have selected other options, Remove All may appear to the right of other items.
- Click Remove All beside Presentation Notes to remove all notes. Note that this cannot be undone.
- Click Close.
Below is the Inspector in PowerPoint for Windows with Presentation Notes selected after the user has clicked Inspect:
Remove speaker notes by saving a presentation as a PDF
You can also save a presentation as a PDF (portable document format) file and remove notes. This method is available both for PowerPoint for Windows or Mac but the presentation will lose specific PowerPoint functionality (such as animations and transitions).
To save a PowerPoint presentation as a PDF and remove speaker notes:
- Click the File tab in the Ribbon.
- Click Print.
- Ensure that Print All Slides and Full Page Slides are selected below Settings.
- Click Save As.
- Navigate to the location where you want to save the PDF file.
- If necessary, click More Options.
- From the Save As Type drop-down menu, select PDF.
- Click Save.
Remove speaker notes using a macro in PowerPoint for Windows
Another option is to create and run a VBA (Visual Basic for Applications) macro to delete speaker notes. You can create macros in both the Windows and Mac versions of PowerPoint.
You'll need to insert VBA code first in the Visual Basic Editor and then run it in PowerPoint. You can indent code for readability by pressing tab at the beginning of a line of code. The indenting does not affect the code when you run it.
Be sure to run the macro in a copy of the presentation because you can't undo a macro.
For Windows users, you should display the Developer tab in the Ribbon if you want to create macros.
To display the Developer tab in PowerPoint for Windows:
- Click the File tab in the Ribbon.
- Click Options. A dialog box appears.
- Click Customize Ribbon in the categories on the left.
- In the area on the right, check or select Developer.
- Click OK.
A Developer tab will appear in the Ribbon.
Below is the PowerPoint Options dialog box (in Windows) with Developer selected on the right:
To create a macro to delete speaker notes in PowerPoint for Windows:
- Create a copy of the presentation with the notes you want to delete.
- Open the copy of the presentation.
- Click the Developer tab in the Ribbon.
- Click Visual Basic. The Visual Basic Editor appears.
- Click Insert in the menu and select Module. A module window will appear.
- Copy and paste the following code into the module window (you can use Ctrl + C to copy and Ctrl + V to paste).
Copy the VBA code below into the Code window (from Sub to End Sub):
Sub DeleteNotes()
'this macro will run through each slide in a presentation and if there are notes, delete them
Dim objSlide As Slide 'declare slide as an object
For Each objSlide In ActivePresentation.Slides
With objSlide.NotesPage.Shapes(2)
If .HasTextFrame Then
.TextFrame.DeleteText
End If
End With
Next objSlide
End Sub
Once you have copied the code into the Code window, exit the Visual Basic Editor by clicking the PowerPoint icon on the top left.
Below is the Visual Basic Editor with the code on the right (indented for readability):
To run the macro in PowerPoint for Windows:
- In PowerPoint, click the Developer tab.
- Click Macros. A dialog box appears.
- Click the macro and click Run or double-click the macro to run it and delete the speaker notes.
Remove speaker notes using a macro in PowerPoint for Mac
To create a macro to delete speaker notes in PowerPoint for Mac:
- Create a copy of the presentation with the notes you want to delete.
- Open the copy of the presentation.
- Click Tools in the menu.
- Select Macro and then Visual Basic Editor. The Visual Basic Editor appears.
- In the toolbar at the top, click Add Module. A module window will appear. Alternatively, right-click a workbook in the list on the left and select Insert and then Module.
- Copy and paste the following code into the module window (you can use Command + C to copy and Command + V to paste).
Copy the VBA code below into the Code window (from Sub to End Sub):
Sub DeleteNotes()
'this macro will run through each slide in a presentation and if there are notes, delete them
Dim objSlide As Slide 'declare slide as an object
For Each objSlide In ActivePresentation.Slides
With objSlide.NotesPage.Shapes(2)
If .HasTextFrame Then
.TextFrame.DeleteText
End If
End With
Next objSlide
End Sub
Once you have copied the code into the Code window, close the Visual Basic Editor by clicking the PowerPoint icon or the red Close button on the top left.
To run the macro in PowerPoint for Mac:
- In PowerPoint, click Tools in the menu.
- Click Macro and select Macros. A dialog box appears.
- Click the macro and click Run or double-click the macro to run it and delete the speaker notes.
Save PowerPoint files with macros
If you want to save a macro with the PowerPoint file, you will need to save it as a macro-enabled file type (in the Save as Type drop-down menu).
You can also save a separate PowerPoint presentation with the macro and then run it when needed. You can run macros from other open presentations so this strategy can work well.
If you open a PowerPoint file that contains a macro, you will typically need to enable content to run the macro.
This article was first published on January 6, 2016 and has been updated for clarity and content.
Subscribe to get more articles like this one
Did you find this article helpful? If you would like to receive new articles, JOIN our email list.
More resources
How to Embed a YouTube Video in PowerPoint
How to Add Audio in PowerPoint Presentations
How to Print a PowerPoint Presentation with Notes
How to Insert Video in PowerPoint (from a File on Your PC or Shared Drive)
How to Break, Update or Change Links to Excel Charts or Worksheets in PowerPoint
Related courses
Microsoft PowerPoint: Intermediate / Advanced
Microsoft PowerPoint: Design for Non-Designers
Microsoft PowerPoint: Accessible PowerPoint Presentations
Our instructor-led courses are delivered in virtual classroom format or at our downtown Toronto location at 18 King Street East, Suite 1400, Toronto, Ontario, Canada (some in-person classroom courses may also be delivered at an alternate downtown Toronto location). Contact us at info@avantixlearning.ca if you'd like to arrange custom instructor-led virtual classroom or onsite training on a date that's convenient for you.
Copyright 2025 Avantix® Learning
You may also like
How to Make Text Appear on Click in PowerPoint
You can make text appear on click in PowerPoint using entrance animations. The most common entrance animations are appear, fade, wipe and fly in. During a slide show, presenters can make text appear by line, bullet point, paragraph, word or character. In this article, we will focus on using animations to make text appear on click so you will need to run a slide show and then click anywhere on the slide to make the text appear. You can also press the right arrow or spacebar to make text appear during a slide show. Animations are typically added to placeholders or text boxes in Normal View but can be applied in Slide Master View.
How to Flip an Image in PowerPoint (2 Easy Ways)
You can easily flip an image in PowerPoint using the Ribbon or by dragging a sizing handle. Images can be flipped horizontally or vertically on a slide.
How to Recolor a Picture in PowerPoint
You can recolor a picture in PowerPoint in several ways. The recolor options in the Ribbon and in the Format Picture task pane allow you to recolor a picture but, depending on your version of PowerPoint, the colors available may only work with the current color theme and may also blend colors from the original picture which is problematic. An alternative is to create a shape, fill it with a color, change its transparency and overlay the shape on top of the picture. You would typically make the image grayscale first if you use this strategy.
Microsoft, the Microsoft logo, Microsoft Office and related Microsoft applications and logos are registered trademarks of Microsoft Corporation in Canada, US and other countries. All other trademarks are the property of the registered owners.
Avantix Learning |18 King Street East, Suite 1400, Toronto, Ontario, Canada M5C 1C4 | Contact us at info@avantixlearning.ca
