Suppressing the Page Number for the First Page: set the ShowFirstPageNumber property for the appropriate HeaderFooter object in the appropriate section to False : Document Header Footer « Word « VBA / Excel / Access / Word
- VBA / Excel / Access / Word
- Word
- Document Header Footer
Suppressing the Page Number for the First Page: set the ShowFirstPageNumber property for the appropriate HeaderFooter object in the appropriate section to False
Sub page()
ActiveDocument.Sections(1).Footers(wdHeaderFooterPrimary).PageNumbers_
.ShowFirstPageNumber = False
End Sub
Related examples in the same category