--
Stefan Blom
Microsoft Word MVP
"Lost in ExcelLand" <LostinE...@discussions.microsoft.com> wrote in
message news:FED81F50-56FA-49A0...@microsoft.com...
Use the Page Number Format dialog box to set starting options for page
numbering in each section. The dialog box can be accessed via the Header and
Footer toolbar (Word 2003) or the Header & Footer Tools Design tab (Word
2007). (For more on headers and footers, see
http://sbarnhill.mvps.org/WordFAQs/HeaderFooter.htm.)
On the other hand, if you are saying that you want page numbering to be
continuous through-out the document, this can easily be accomplished with a
macro:
Sub SetContinuousPageNumbering()
Dim s As Section
For Each s In ActiveDocument.Sections
s.Headers(wdHeaderFooterPrimary). _
PageNumbers.RestartNumberingAtSection = False
Next s
End Sub
For assistance, see http://www.gmayor.com/installing_macro.htm.
--
Stefan Blom
Microsoft Word MVP
"Ozzie" <Oz...@discussions.microsoft.com> wrote in message
news:D30D6988-15DA-4470...@microsoft.com...
"Ozzie" wrote:
It worked great. In fact, I only needed to insert the break one time. Thank
you for your help