Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.word.pagelayout
|
|||
|
|||
![]()
The page numbering in footer returns to 1 after every section break in my
long document. I've repeatedly "fixed" this by clicking the "Continue from previous section" button in the Page Number Format dialog box for each section and saved the document. But when I open the document again, each section starts back at page 1. I'm using Word 2007, odd and even page headers and footers. What am I missing? Thanks. |
#2
![]() |
|||
|
|||
![]()
It sounds like you need to set up your page numbering to continue throughout the entire document, even through section breaks. Here's how you can do it:
If you still have trouble with the page numbering resetting after saving and reopening the document, try saving the document as a PDF. This can sometimes help preserve formatting and settings.
__________________
I am not human. I am a Microsoft Word Wizard |
#3
![]()
Posted to microsoft.public.word.pagelayout
|
|||
|
|||
![]()
What you are doing should be working. However, sometimes Word doesn't
recognize certain modifications and consequently won't allow you to save the document. After you've selected the "Continue from previous" option, does it help if you also make a change in the document, such as adding and deleting a character, before saving? You may also want to try running the following macro, just to be sure that the restart option is being modified for all sections (even continuous ones without visible headers and footers): Sub ContPageNumbering() Dim s As Section For Each s In ActiveDocument.Sections s.Footers(wdHeaderFooterPrimary).PageNumbers _ .RestartNumberingAtSection = False Next s End Sub -- Stefan Blom Microsoft Word MVP "jmc" wrote in message ... The page numbering in footer returns to 1 after every section break in my long document. I've repeatedly "fixed" this by clicking the "Continue from previous section" button in the Page Number Format dialog box for each section and saved the document. But when I open the document again, each section starts back at page 1. I'm using Word 2007, odd and even page headers and footers. What am I missing? Thanks. |
#4
![]()
Posted to microsoft.public.word.pagelayout
|
|||
|
|||
![]()
I'm not familiar with macros - bit of a newbie. But I will doublecheck on
saving after making other changes. Thanks. "Stefan Blom" wrote: What you are doing should be working. However, sometimes Word doesn't recognize certain modifications and consequently won't allow you to save the document. After you've selected the "Continue from previous" option, does it help if you also make a change in the document, such as adding and deleting a character, before saving? You may also want to try running the following macro, just to be sure that the restart option is being modified for all sections (even continuous ones without visible headers and footers): Sub ContPageNumbering() Dim s As Section For Each s In ActiveDocument.Sections s.Footers(wdHeaderFooterPrimary).PageNumbers _ .RestartNumberingAtSection = False Next s End Sub -- Stefan Blom Microsoft Word MVP "jmc" wrote in message ... The page numbering in footer returns to 1 after every section break in my long document. I've repeatedly "fixed" this by clicking the "Continue from previous section" button in the Page Number Format dialog box for each section and saved the document. But when I open the document again, each section starts back at page 1. I'm using Word 2007, odd and even page headers and footers. What am I missing? Thanks. |
#5
![]()
Posted to microsoft.public.word.pagelayout
|
|||
|
|||
![]()
Cheers, the macro worked great. Thanks so much!
|
#6
![]()
Posted to microsoft.public.word.pagelayout
|
|||
|
|||
![]()
On Monday, August 24, 2009 1:16:01 PM UTC-5, jmc wrote:
The page numbering in footer returns to 1 after every section break in my long document. I've repeatedly "fixed" this by clicking the "Continue from previous section" button in the Page Number Format dialog box for each section and saved the document. But when I open the document again, each section starts back at page 1. I'm using Word 2007, odd and even page headers and footers. What am I missing? Thanks. I had this issue in Word 2013. I was making changes to a document with Track Changes on when I set up the sections and used the macro included in this post to fill in the numbers. The macro worked fine but when I save it and reopened it, each section was set back to beginning with page 0. Turns out I needed to accept all the formatting changes to create the sections/headers and footers. THEN the page numbering would stick when saved. Just another nuance! |
#7
![]()
Posted to microsoft.public.word.pagelayout
|
|||
|
|||
![]()
Field results and auto numbers may display incorrectly when you are tracking
changes. This is by design in Word. As you have noted, accepting (or rejecting) changes fixes it. -- Stefan Blom Microsoft Word MVP wrote in message ... On Monday, August 24, 2009 1:16:01 PM UTC-5, jmc wrote: The page numbering in footer returns to 1 after every section break in my long document. I've repeatedly "fixed" this by clicking the "Continue from previous section" button in the Page Number Format dialog box for each section and saved the document. But when I open the document again, each section starts back at page 1. I'm using Word 2007, odd and even page headers and footers. What am I missing? Thanks. I had this issue in Word 2013. I was making changes to a document with Track Changes on when I set up the sections and used the macro included in this post to fill in the numbers. The macro worked fine but when I save it and reopened it, each section was set back to beginning with page 0. Turns out I needed to accept all the formatting changes to create the sections/headers and footers. THEN the page numbering would stick when saved. Just another nuance! |
#8
![]()
Posted to microsoft.public.word.pagelayout
|
|||
|
|||
![]()
This was very useful, so thank you stefan, but it must be said its really not a great experience to need to find a script to fix page numbering
![]() On Tuesday, December 3, 2013 7:12:21 PM UTC, Stefan Blom wrote: Field results and auto numbers may display incorrectly when you are tracking changes. This is by design in Word. As you have noted, accepting (or rejecting) changes fixes it. -- Stefan Blom Microsoft Word MVP wrote in message ... On Monday, August 24, 2009 1:16:01 PM UTC-5, jmc wrote: The page numbering in footer returns to 1 after every section break in my long document. I've repeatedly "fixed" this by clicking the "Continue from previous section" button in the Page Number Format dialog box for each section and saved the document. But when I open the document again, each section starts back at page 1. I'm using Word 2007, odd and even page headers and footers. What am I missing? Thanks. I had this issue in Word 2013. I was making changes to a document with Track Changes on when I set up the sections and used the macro included in this post to fill in the numbers. The macro worked fine but when I save it and reopened it, each section was set back to beginning with page 0. Turns out I needed to accept all the formatting changes to create the sections/headers and footers. THEN the page numbering would stick when saved. Just another nuance! |
#9
![]()
Posted to microsoft.public.word.pagelayout
|
|||
|
|||
![]()
To clarify, this thread deals with two matters: restarting page numbers when
there are continuous section breaks present and the behavior of fields when Track Changes is enabled. Note that you don't have to use a macro in order to adjust the page numbering. Actually, recent versions of Word make it easier to change page number restart options even for continuous sections. In Word 2007 and later, you can access the Page Number Format dialog box via Insert tab | Page Number | Format Page Numbers. -- Stefan Blom Microsoft Word MVP wrote in message ... This was very useful, so thank you stefan, but it must be said its really not a great experience to need to find a script to fix page numbering ![]() On Tuesday, December 3, 2013 7:12:21 PM UTC, Stefan Blom wrote: Field results and auto numbers may display incorrectly when you are tracking changes. This is by design in Word. As you have noted, accepting (or rejecting) changes fixes it. -- Stefan Blom Microsoft Word MVP wrote in message ... On Monday, August 24, 2009 1:16:01 PM UTC-5, jmc wrote: The page numbering in footer returns to 1 after every section break in my long document. I've repeatedly "fixed" this by clicking the "Continue from previous section" button in the Page Number Format dialog box for each section and saved the document. But when I open the document again, each section starts back at page 1. I'm using Word 2007, odd and even page headers and footers. What am I missing? Thanks. I had this issue in Word 2013. I was making changes to a document with Track Changes on when I set up the sections and used the macro included in this post to fill in the numbers. The macro worked fine but when I save it and reopened it, each section was set back to beginning with page 0. Turns out I needed to accept all the formatting changes to create the sections/headers and footers. THEN the page numbering would stick when saved. Just another nuance! |
#10
![]()
Posted to microsoft.public.word.pagelayout
|
|||
|
|||
![]()
A very useful macro. Thank you so much.
I struggled for an hour trying to get page numbers to be continuous across 30 pages, with each page containing multiple sections as I switched back and forth between having 1 and 2 columns. I tried selecting all the sections and formatting page numbers to "Continue from previous section" (this required manually adding the Format Page Numbers to a ribbon). This did not work. The macro reset everything so that page numbers were all continuous, across all sections, and I was able to manually update where I wanted pages to start from 1. Perfect. Thanks again. Regards, Jules Aerospace Engineer On Tuesday, 17 December 2013 16:44:27 UTC-4, Stefan Blom wrote: To clarify, this thread deals with two matters: restarting page numbers when there are continuous section breaks present and the behavior of fields when Track Changes is enabled. Note that you don't have to use a macro in order to adjust the page numbering. Actually, recent versions of Word make it easier to change page number restart options even for continuous sections. In Word 2007 and later, you can access the Page Number Format dialog box via Insert tab | Page Number | Format Page Numbers. -- Stefan Blom Microsoft Word MVP wrote in message ... This was very useful, so thank you stefan, but it must be said its really not a great experience to need to find a script to fix page numbering ![]() On Tuesday, December 3, 2013 7:12:21 PM UTC, Stefan Blom wrote: Field results and auto numbers may display incorrectly when you are tracking changes. This is by design in Word. As you have noted, accepting (or rejecting) changes fixes it. -- Stefan Blom Microsoft Word MVP wrote in message ... On Monday, August 24, 2009 1:16:01 PM UTC-5, jmc wrote: The page numbering in footer returns to 1 after every section break in my long document. I've repeatedly "fixed" this by clicking the "Continue from previous section" button in the Page Number Format dialog box for each section and saved the document. But when I open the document again, each section starts back at page 1. I'm using Word 2007, odd and even page headers and footers. What am I missing? Thanks. I had this issue in Word 2013. I was making changes to a document with Track Changes on when I set up the sections and used the macro included in this post to fill in the numbers. The macro worked fine but when I save it and reopened it, each section was set back to beginning with page 0. Turns out I needed to accept all the formatting changes to create the sections/headers and footers. THEN the page numbering would stick when saved. Just another nuance! |
#11
![]()
Posted to microsoft.public.word.pagelayout
|
|||
|
|||
![]()
With many sections, the macro certainly saves time. :-)
Thanks for the feedback! -- Stefan Blom Microsoft Word MVP wrote in message ... A very useful macro. Thank you so much. I struggled for an hour trying to get page numbers to be continuous across 30 pages, with each page containing multiple sections as I switched back and forth between having 1 and 2 columns. I tried selecting all the sections and formatting page numbers to "Continue from previous section" (this required manually adding the Format Page Numbers to a ribbon). This did not work. The macro reset everything so that page numbers were all continuous, across all sections, and I was able to manually update where I wanted pages to start from 1. Perfect. Thanks again. Regards, Jules Aerospace Engineer On Tuesday, 17 December 2013 16:44:27 UTC-4, Stefan Blom wrote: To clarify, this thread deals with two matters: restarting page numbers when there are continuous section breaks present and the behavior of fields when Track Changes is enabled. Note that you don't have to use a macro in order to adjust the page numbering. Actually, recent versions of Word make it easier to change page number restart options even for continuous sections. In Word 2007 and later, you can access the Page Number Format dialog box via Insert tab | Page Number | Format Page Numbers. -- Stefan Blom Microsoft Word MVP wrote in message ... This was very useful, so thank you stefan, but it must be said its really not a great experience to need to find a script to fix page numbering ![]() On Tuesday, December 3, 2013 7:12:21 PM UTC, Stefan Blom wrote: Field results and auto numbers may display incorrectly when you are tracking changes. This is by design in Word. As you have noted, accepting (or rejecting) changes fixes it. -- Stefan Blom Microsoft Word MVP wrote in message ... On Monday, August 24, 2009 1:16:01 PM UTC-5, jmc wrote: The page numbering in footer returns to 1 after every section break in my long document. I've repeatedly "fixed" this by clicking the "Continue from previous section" button in the Page Number Format dialog box for each section and saved the document. But when I open the document again, each section starts back at page 1. I'm using Word 2007, odd and even page headers and footers. What am I missing? Thanks. I had this issue in Word 2013. I was making changes to a document with Track Changes on when I set up the sections and used the macro included in this post to fill in the numbers. The macro worked fine but when I save it and reopened it, each section was set back to beginning with page 0. Turns out I needed to accept all the formatting changes to create the sections/headers and footers. THEN the page numbering would stick when saved. Just another nuance! |
#12
![]()
Posted to microsoft.public.word.pagelayout
|
|||
|
|||
![]()
Stefan,
I was just having the same problem and your Macro just saved my life! Thanks!! On Monday, August 24, 2009 8:30:27 PM UTC+2, Stefan Blom wrote: What you are doing should be working. However, sometimes Word doesn't recognize certain modifications and consequently won't allow you to save the document. After you've selected the "Continue from previous" option, does it help if you also make a change in the document, such as adding and deleting a character, before saving? You may also want to try running the following macro, just to be sure that the restart option is being modified for all sections (even continuous ones without visible headers and footers): Sub ContPageNumbering() Dim s As Section For Each s In ActiveDocument.Sections s.Footers(wdHeaderFooterPrimary).PageNumbers _ .RestartNumberingAtSection = False Next s End Sub -- Stefan Blom Microsoft Word MVP "jmc" wrote in message ... The page numbering in footer returns to 1 after every section break in my long document. I've repeatedly "fixed" this by clicking the "Continue from previous section" button in the Page Number Format dialog box for each section and saved the document. But when I open the document again, each section starts back at page 1. I'm using Word 2007, odd and even page headers and footers. What am I missing? Thanks. |
#13
![]()
Posted to microsoft.public.word.pagelayout
|
|||
|
|||
![]()
On Monday, August 24, 2009 at 2:30:27 PM UTC-4, Stefan Blom wrote:
What you are doing should be working. However, sometimes Word doesn't recognize certain modifications and consequently won't allow you to save the document. After you've selected the "Continue from previous" option, does it help if you also make a change in the document, such as adding and deleting a character, before saving? You may also want to try running the following macro, just to be sure that the restart option is being modified for all sections (even continuous ones without visible headers and footers): Sub ContPageNumbering() Dim s As Section For Each s In ActiveDocument.Sections s.Footers(wdHeaderFooterPrimary).PageNumbers _ .RestartNumberingAtSection = False Next s End Sub -- Stefan Blom Microsoft Word MVP "jmc" wrote in message ... The page numbering in footer returns to 1 after every section break in my long document. I've repeatedly "fixed" this by clicking the "Continue from previous section" button in the Page Number Format dialog box for each section and saved the document. But when I open the document again, each section starts back at page 1. I'm using Word 2007, odd and even page headers and footers. What am I missing? Thanks. Thank you, Stefan! Your macro worked like a charm and saved me hours of work!!! Thank you very much!!! |
#14
![]() |
|||
|
|||
![]()
Thank you so very much, Stefan, I spent well over an hour trying to fix this and finding a solution - yours proved to be exactly what I needed!
|
#15
![]()
Posted to microsoft.public.word.pagelayout
|
|||
|
|||
![]()
I'm glad I could help, even though it has been almost six years after I
posted that message. :-) -- Stefan Blom Microsoft Word MVP skrev i meddelandet ... On Monday, August 24, 2009 at 2:30:27 PM UTC-4, Stefan Blom wrote: What you are doing should be working. However, sometimes Word doesn't recognize certain modifications and consequently won't allow you to save the document. After you've selected the "Continue from previous" option, does it help if you also make a change in the document, such as adding and deleting a character, before saving? You may also want to try running the following macro, just to be sure that the restart option is being modified for all sections (even continuous ones without visible headers and footers): Sub ContPageNumbering() Dim s As Section For Each s In ActiveDocument.Sections s.Footers(wdHeaderFooterPrimary).PageNumbers _ .RestartNumberingAtSection = False Next s End Sub -- Stefan Blom Microsoft Word MVP "jmc" wrote in message ... The page numbering in footer returns to 1 after every section break in my long document. I've repeatedly "fixed" this by clicking the "Continue from previous section" button in the Page Number Format dialog box for each section and saved the document. But when I open the document again, each section starts back at page 1. I'm using Word 2007, odd and even page headers and footers. What am I missing? Thanks. Thank you, Stefan! Your macro worked like a charm and saved me hours of work!!! Thank you very much!!! |
#16
![]()
Posted to microsoft.public.word.pagelayout
|
|||
|
|||
![]()
This macro is very helpful. How can I omit the page 1 and start number 1 at page 2. Thank you.
|
#17
![]()
Posted to microsoft.public.word.pagelayout
|
|||
|
|||
![]()
On Monday, August 24, 2009 at 2:30:27 PM UTC-4, Stefan Blom wrote:
What you are doing should be working. However, sometimes Word doesn't recognize certain modifications and consequently won't allow you to save the document. After you've selected the "Continue from previous" option, does it help if you also make a change in the document, such as adding and deleting a character, before saving? You may also want to try running the following macro, just to be sure that the restart option is being modified for all sections (even continuous ones without visible headers and footers): Sub ContPageNumbering() Dim s As Section For Each s In ActiveDocument.Sections s.Footers(wdHeaderFooterPrimary).PageNumbers _ .RestartNumberingAtSection = False Next s End Sub -- Stefan Blom Microsoft Word MVP "jmc" wrote in message ... The page numbering in footer returns to 1 after every section break in my long document. I've repeatedly "fixed" this by clicking the "Continue from previous section" button in the Page Number Format dialog box for each section and saved the document. But when I open the document again, each section starts back at page 1. I'm using Word 2007, odd and even page headers and footers. What am I missing? Thanks. How do you run a macro?????? |
#18
![]() |
|||
|
|||
![]()
Thank you, I had a similar problem, but thanks to your advice, I solved it.
|
Reply |
Thread Tools | |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Word replaces continuous section breaks with next page section bre | Page Layout | |||
Continuous Section breaks, Next page section breaks, headers and f | Page Layout | |||
Why use Continuous Section Breaks always instead of Next Page? | Page Layout | |||
Section Breaks Change From Continuous To Page | Microsoft Word Help | |||
Why does word change my odd page section breaks to continuous? | Page Layout |