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 : Document Header Footer « Word « VBA / Excel / Access / Word






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

 
Sub add()
    With ActiveDocument.Sections(1).Headers(wdHeaderFooterPrimary) _
        .PageNumbers
        .IncludeChapterNumber = True
        .ChapterPageSeparator = wdSeparatorEnDash
    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.Changing the Page Numbering for a Section
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