I am trying to write some VBA to hide page numbers on the notes page in PowerPoint. I can do this for the slides using the code below, but cant find a solution for the notes/handouts page.
Sub hideNotesPageNumbers()
Dim sld As Slide
For Each sld In ActivePresentation.Slides
sld.HeadersFooters.SlideNumber.Visible = False
Next sld
End Sub
So Possibly, something like
Dim sld As NotesPage
For Each sld In ActivePresentation.NotesPage
sld.HeadersFooters.NotesPageNumber.Visible = False
Next sld
In powerpoint you can do this via Insert -> Header and Footer -> Note and Handouts -> page numbers
