A family of Microsoft word processing software products for creating web, email, and print documents.
Here are two free Add-Ins that may assist you:
The first can be used to reset your document to have continuous page numbers throughout. You would then restart it after your front matter and have continuous numbering from then on.
The second lets you look at the settings for every section in your document.
I would recommend working with a copy of your document to see if you like the results.
If you are unable to use Add-Ins downloaded the first one uses a macro by Jay Freedman.
Sub ContinuousPageNumbers1()
' Jay Freedman
' modified to preserve track changes status - idea from Graham Mayor 25 Oct 2017'
Dim secNum As Long
Dim btnCancel ' give user chance to cancel
Dim bTrackChanges As Boolean
btnCancel = MsgBox(prompt:="Do you want to reset all of the page numbers in this document to number continuously?", _
Title:="Are you sure?", _
Buttons:=vbYesNo)
If btnCancel = vbNo Then
MsgBox prompt:="Reset of continuous page numbering cancelled by user!", Buttons:=vbExclamation, Title:="Page Number Reset Cancelled!"
Exit Sub
End If
' Proceed with reset
bTrackChanges = ActiveDocument.TrackRevisions 'Graham Mayor
ActiveDocument.TrackRevisions = False ' Graham Mayor
With ActiveDocument
For secNum = 2 To .Sections.Count
.Sections(secNum).Headers(wdHeaderFooterPrimary) _
.PageNumbers.RestartNumberingAtSection = False
Next
End With
ActiveDocument.TrackRevisions = bTrackChanges 'Graham Mayor
MsgBox prompt:="The Continuous Page Numbers macro has run.", Title:="Page number reset macro finished!"
End Sub