Changing the Page Numbering for a Section : Document Header Footer « Word « VBA / Excel / Access / Word






Changing the Page Numbering for a Section

 
Sub active()
    With ActiveDocument.Sections(1).Headers(wdHeaderFooterPrimary)
        If .PageNumbers.StartingNumber = 0 Then
            .PageNumbers.RestartNumberingAtSection = True
            .PageNumbers.StartingNumber = 50
        End If
    End With
End Sub

 








Related examples in the same category

1.Getting to the Header or Footer
2.Adding Page Numbers to One or More Sections of a Document
3.Finding Out if a Section of a Document Has Page Numbers
4.To add the chapter number to the page numbers, use heading numbering in your document, set the IncludeChapterNumber property to True, and specify the separator to use
5.Suppressing the Page Number for the First Page: set the ShowFirstPageNumber property for the appropriate HeaderFooter object in the appropriate section to False
6.Formatting Page Numbers
7.Select the PageNumber object and then apply formatting to it as you would any other selection
8.Creating "Page X of Y" Page Numbers
9.adds a new-page section to the active document, placing it before the second paragraph:
10.Removing Page Numbers from One or More Sections of a Document