Remove all notes from Microsoft PowerPoint presentation on MacOS
- Make backup copy of presentation
- Open the presentation
- In the top toolbar, click View
- In the tool ribbon, click the Macros button
- Select the presentation name
- Name the macro, e.g. "Notes_remove"
- Click the + button
- Between the Sub Notes_remove() and End Sub lines, enter these lines:
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 - Click the Play button.