View Single Post
 
Old 05-01-2014, 01:28 PM
tdg23113 tdg23113 is offline Windows 7 64bit Office 2010 64bit
Novice
 
Join Date: Apr 2014
Posts: 3
tdg23113 is on a distinguished road
Default

Stefan,
Worked like a charm. I think I had tried just about everything else! Thanks for the information, I really appreciate it.


Quote:
Originally Posted by Stefan Blom View Post
In the section where the page number restarts, do the following: Click Insert tab | Page Number | Format Page Numbers. In the Page Number Format dialog box, select "Continue from previous section," and click OK.

If you see many undesired restarts, you could run the following macro instead:

Code:
Sub SpecifyContinuousPageNum()
Dim s As Section
For Each s In ActiveDocument.Sections
s.Footers(wdHeaderFooterPrimary) _
.PageNumbers.RestartNumberingAtSection = False
Next s
End Sub
For assistance, see http://www.gmayor.com/installing_macro.htm.
Reply With Quote