A family of Microsoft word processing software products for creating web, email, and print documents.
To make sure that the change is made for all possible headers and footers, run a macro containing the following code:
Dim i As Long, j As Long
With ActiveDocument
For i = 1 To .Sections.Count
With .Sections(i)
For j = 1 To .Headers.Count
.Headers(j).PageNumbers.RestartNumberingAtSection = False
Next j
For j = 1 To .Footers.Count
.Footers(j).PageNumbers.RestartNumberingAtSection = False
Next j
End With
Next i
End With