Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Page Numbers not in sequence

0 views
Skip to first unread message

Ozzie

unread,
Jul 24, 2009, 2:24:01 PM7/24/09
to
I have a document where just about every page is formatted differently. I am
unable to start numbers where I want and when I try to insert page numbers,
the numbering sequence begins all over again at about page five. I am sure
it is because of all the different page set ups; most pages have data that
displays 8 1/2 by 11. However, frequently there are pages where the data
displays 11 by 8 1/2. Any help would be appreciated. Thanks

Lost in ExcelLand

unread,
Jul 24, 2009, 3:56:01 PM7/24/09
to
If the different pages are separated by Next Page (not Continuous or regular
Page) Breaks, the numbering should work correctly. For instance, after the
first Next Page break, go into the footer and format the page number to
Continue from previous section. Whenever pages go from portrait to landscape
and back again, this must be done after each section break. Let me know if
it works!

Stefan Blom

unread,
Jul 25, 2009, 7:24:57 AM7/25/09
to

Note that you can restart page numbers for continuous sections as well, but
it requires a bit more work, as you will have to insert a page break,
temporarily, so that you can see the headers and footers of those sections.

--
Stefan Blom
Microsoft Word MVP

"Lost in ExcelLand" <LostinE...@discussions.microsoft.com> wrote in
message news:FED81F50-56FA-49A0...@microsoft.com...

Stefan Blom

unread,
Jul 25, 2009, 7:39:05 AM7/25/09
to

Page number restarts are set for each individual section, and whenever
section formatting (page setup, headers & footers, and newspaper columns)
changes, a section break has been inserted in Word. To see the section
breaks, display nonprinting marks (for example by pressing Ctrl+Shift+8);
you may also want to switch to Normal view (Draft view in Word 2007). For
more on sections in general, see
http://word.mvps.org/faqs/formatting/WorkWithSections.htm.

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

unread,
Jul 28, 2009, 12:37:01 PM7/28/09
to

"Ozzie" wrote:

It worked great. In fact, I only needed to insert the break one time. Thank
you for your help

0 new messages