Thread: [Solved] Pagnation with Columns
View Single Post
 
Old 03-17-2024, 09:30 AM
Italophile Italophile is offline Windows 11 Office 2021
Expert
 
Join Date: Mar 2022
Posts: 554
Italophile is just really niceItalophile is just really niceItalophile is just really niceItalophile is just really nice
Default

It is possible that one of the sections is corrupt.

If that is not the case then you should be able to set the starting number by simply looping through the sections. For example:

Code:
Sub SetStartingPageNumber()
    Dim secIndex As Long
    
    For secIndex = 2 To ActiveDocument.Sections.count
        ActiveDocument.Sections(secIndex).Headers(wdHeaderFooterPrimary).PageNumbers.RestartNumberingAtSection = False
    Next secIndex
End Sub
Reply With Quote