Share via

Delete all PowerPoint notes on a Mac

Anonymous
2017-07-11T13:42:54+00:00

I have a presentation with nearly 200 slides. I would like to delete the notes before sharing the presentation with others. I don't want to share by saving slides as PDFs. I need to keep the slides as PP slides but without the notes. 

Is there a way of deleting all the notes at once without having to delete each slide manually? It is possible to do this on PP within Microsoft, but I can't see how it can be done on the Mac.

Thanks!

Microsoft 365 and Office | PowerPoint | For home | Windows

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

Answer accepted by question author

Anonymous
2017-07-11T15:02:05+00:00

In Windows version you can use Inspect Document to do this but this is not available on the Mac version. Maybe someone with a PC could help?

You should be able to do this with a little code on a Mac though. This code depends on the notes being in Shape2 (the default) - Test on a copy. If the notes are not in Shape2 you might need to make it a little more complex

Sub Zap()

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

Was this answer helpful?

7 people found this answer helpful.
0 comments No comments

3 additional answers

Sort by: Most helpful
  1. Anonymous
    2017-07-11T18:06:13+00:00

    I tinkered around with inserting this code into a Macro, and it worked! Thanks, John! You saved me hours of tedious work!!

    Was this answer helpful?

    2 people found this answer helpful.
    0 comments No comments
  2. Anonymous
    2017-07-11T17:33:31+00:00

    Thanks so very much for your reply! Can you give me a link with any instructions on how to enter the code into PowerPoint for Mac? When I search for that, I'm finding only instructions for Microsoft and not Mac. 

    THANK YOU!!

    Was this answer helpful?

    0 comments No comments
  3. Anonymous
    2017-07-11T14:49:59+00:00

    Hi Ryan,

    It is not feasible to delete all notes on PowerPoint if you didn’t print it as PDF.

    Given the situation, we suggest you vote for your requirement to UserVoice, which will help better our products and services.

    remove speaker notes

    Thanks for your updates.

    Qing

    Was this answer helpful?

    0 comments No comments