I have a PPT that has notes on every slide in the notes pane. Is there a way to remove these notes from every slide in the entrie PPT, either VBA or a macro. Thank you.
I'd recommend making a copy of the presentation first, just in case.
Sub RemoveNotes()
Dim x As Integer
With ActivePresentation
For x = 1 To .Slides.Count
.Slides(x).NotesPage. _
Shapes(2).TextFrame. _
TextRange.Text = ""
Next x
End Sub
Looks like this code could work, but I am recieving a message that I have macros disabled. I don't find any documentation on how to enable macros, any advise. Thank you.
Your selection here depends on your comfort level. I use Medium most of the time. I do not recommend leaving the setting on Low.
I'd also recommend, while you are in the neighborhood, clicking on the 'Trusted Sources' tab and selecting 'Trust all installed add-ins and templates'.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.