Prev: Total Page Number Minus Number of Pages in Front Matter
Next: how to place a picture in the upper left corner of the header in
From: Millieac on 15 Apr 2010 12:00 I did a mail merge for letters and I need the resulting 150 page document to have page numbers 1-150. However, the section breaks all have "Start numbering at 1". Without accessing every section is there a way to globally set continue numbering or link to next section for the document?
From: Jay Freedman on 15 Apr 2010 12:24
Millieac wrote: > I did a mail merge for letters and I need the resulting 150 page > document to have page numbers 1-150. However, the section breaks all > have "Start numbering at 1". Without accessing every section is there > a way to globally set continue numbering or link to next section for > the document? To do this you need a small macro. Read http://www.gmayor.com/installing_macro.htm if needed: Sub NoPageRestartAllSections() Dim oSec As Section For Each oSec In ActiveDocument.Sections oSec.Headers(wdHeaderFooterPrimary).PageNumbers _ .RestartNumberingAtSection = False Next End Sub -- Regards, Jay Freedman Microsoft Word MVP FAQ: http://word.mvps.org Email cannot be acknowledged; please post all follow-ups to the newsgroup so all may benefit. |