Reply
 
Thread Tools Display Modes
  #1   Report Post  
Posted to microsoft.public.word.pagelayout
Tom Baxter Tom Baxter is offline
external usenet poster
 
Posts: 6
Default Headers, Footers and Page Number

Hi everyone,

I have a simple problem (simple to describe) but for me, hard to solve.

At the end of this question I have a schematic that shows what I'm trying to
achieve. You might want to look at that before even reading my description of
the problem.

I have a document with a cover page and two subsequent sections. The cover
page is the first section.

The cover page has no header and no footer, which is what I want.

The second section (i.e., the section that follows the cover page) has its
own header and footer. The footer has the page numbers of the form, "Page X
of Y". Note that the total pages, "Y", does not include the cover page, which
is what I want. For "Y" I am using the SECTIONPAGE field, which gives me the
total number of pages in the section. I had tried using NUMPAGES (total pages
in the document) but that number included the cover page.

The third section is where problems start to show up. The third section has
its own header, which I want, but the page numbering in the footer has a
problem. I want the page numbering in the third section to basically continue
from the second section. The problem is that the page number in the third
section basically starts over at 1 and the total pages appears as the total
pages in section 3. What I want is the first page in section 3 to be numbered
with the last page in section 2 plus 1.

I want the total pages in both the section 2 and section 3 footers to
represent the total pages in the document, minus the cover page.

Here's a simple schemtic of what I want, showing a cover page with a 4
content pages:

--------------
COVER PAGE
--------------

--------------
Header: "Section 2"

Footer: "Page 1 of 4"
--------------

--------------
Header: "Section 2"

Footer: "Page 2 of 4"
--------------

--------------
Header: "Section 3"

Footer: "Page 3 of 4"
--------------

--------------
Header: "Section 3"

Footer: "Page 4 of 4"
--------------


--
Tom Baxter
  #2   Report Post  
Posted to microsoft.public.word.pagelayout
Tom Baxter Tom Baxter is offline
external usenet poster
 
Posts: 6
Default Headers, Footers and Page Number

I forgot to mention I am using Word 2007.
--
Tom Baxter


"Tom Baxter" wrote:

Hi everyone,

I have a simple problem (simple to describe) but for me, hard to solve.

At the end of this question I have a schematic that shows what I'm trying to
achieve. You might want to look at that before even reading my description of
the problem.

I have a document with a cover page and two subsequent sections. The cover
page is the first section.

The cover page has no header and no footer, which is what I want.

The second section (i.e., the section that follows the cover page) has its
own header and footer. The footer has the page numbers of the form, "Page X
of Y". Note that the total pages, "Y", does not include the cover page, which
is what I want. For "Y" I am using the SECTIONPAGE field, which gives me the
total number of pages in the section. I had tried using NUMPAGES (total pages
in the document) but that number included the cover page.

The third section is where problems start to show up. The third section has
its own header, which I want, but the page numbering in the footer has a
problem. I want the page numbering in the third section to basically continue
from the second section. The problem is that the page number in the third
section basically starts over at 1 and the total pages appears as the total
pages in section 3. What I want is the first page in section 3 to be numbered
with the last page in section 2 plus 1.

I want the total pages in both the section 2 and section 3 footers to
represent the total pages in the document, minus the cover page.

Here's a simple schemtic of what I want, showing a cover page with a 4
content pages:

--------------
COVER PAGE
--------------

--------------
Header: "Section 2"

Footer: "Page 1 of 4"
--------------

--------------
Header: "Section 2"

Footer: "Page 2 of 4"
--------------

--------------
Header: "Section 3"

Footer: "Page 3 of 4"
--------------

--------------
Header: "Section 3"

Footer: "Page 4 of 4"
--------------


--
Tom Baxter

  #3   Report Post  
Posted to microsoft.public.word.pagelayout
Terry Farrell Terry Farrell is offline
external usenet poster
 
Posts: 2,904
Default Headers, Footers and Page Number

Use { = { PAGES } -1 } in the footers.

But have you looked at the StyleRef field to see if negates the need for
separate sections? The StyleRef field can be cross-referenced to any style
(usually say a Heading Style or Chapter Name style): then on each page, the
StyleRef looks from the nearest instance of the style looking from the top
to bottom of the page and then backwards if it doesn't find one on that
page. That lets you use the Different First Page option in Page Layout so
that you can leave the cover page header/footer-less and have H&Fs on the
subsequent pages without need for any section breaks.

--
Terry Farrell - MSWord MVP

"Tom Baxter" wrote in message
...
I forgot to mention I am using Word 2007.
--
Tom Baxter


"Tom Baxter" wrote:

Hi everyone,

I have a simple problem (simple to describe) but for me, hard to solve.

At the end of this question I have a schematic that shows what I'm trying
to
achieve. You might want to look at that before even reading my
description of
the problem.

I have a document with a cover page and two subsequent sections. The
cover
page is the first section.

The cover page has no header and no footer, which is what I want.

The second section (i.e., the section that follows the cover page) has
its
own header and footer. The footer has the page numbers of the form, "Page
X
of Y". Note that the total pages, "Y", does not include the cover page,
which
is what I want. For "Y" I am using the SECTIONPAGE field, which gives me
the
total number of pages in the section. I had tried using NUMPAGES (total
pages
in the document) but that number included the cover page.

The third section is where problems start to show up. The third section
has
its own header, which I want, but the page numbering in the footer has a
problem. I want the page numbering in the third section to basically
continue
from the second section. The problem is that the page number in the third
section basically starts over at 1 and the total pages appears as the
total
pages in section 3. What I want is the first page in section 3 to be
numbered
with the last page in section 2 plus 1.

I want the total pages in both the section 2 and section 3 footers to
represent the total pages in the document, minus the cover page.

Here's a simple schemtic of what I want, showing a cover page with a 4
content pages:

--------------
COVER PAGE
--------------

--------------
Header: "Section 2"

Footer: "Page 1 of 4"
--------------

--------------
Header: "Section 2"

Footer: "Page 2 of 4"
--------------

--------------
Header: "Section 3"

Footer: "Page 3 of 4"
--------------

--------------
Header: "Section 3"

Footer: "Page 4 of 4"
--------------


--
Tom Baxter


  #4   Report Post  
Posted to microsoft.public.word.pagelayout
Tom Baxter Tom Baxter is offline
external usenet poster
 
Posts: 6
Default Headers, Footers and Page Number

Thanks, Terry.

The { = { PAGES } -1 } worked great.

I looked at the StyleRef field you mentioned but frankly I could not see how
it would help me. I am not interested in Styles (at least I don't think I am)
for this problem. My primary need was to have consistent page numbering
across all section footers yet have differend headers in each section.

But thank you for the help and the suggestion.
--
Tom Baxter


"Terry Farrell" wrote:

Use { = { PAGES } -1 } in the footers.

But have you looked at the StyleRef field to see if negates the need for
separate sections? The StyleRef field can be cross-referenced to any style
(usually say a Heading Style or Chapter Name style): then on each page, the
StyleRef looks from the nearest instance of the style looking from the top
to bottom of the page and then backwards if it doesn't find one on that
page. That lets you use the Different First Page option in Page Layout so
that you can leave the cover page header/footer-less and have H&Fs on the
subsequent pages without need for any section breaks.

--
Terry Farrell - MSWord MVP

"Tom Baxter" wrote in message
...
I forgot to mention I am using Word 2007.
--
Tom Baxter


"Tom Baxter" wrote:

Hi everyone,

I have a simple problem (simple to describe) but for me, hard to solve.

At the end of this question I have a schematic that shows what I'm trying
to
achieve. You might want to look at that before even reading my
description of
the problem.

I have a document with a cover page and two subsequent sections. The
cover
page is the first section.

The cover page has no header and no footer, which is what I want.

The second section (i.e., the section that follows the cover page) has
its
own header and footer. The footer has the page numbers of the form, "Page
X
of Y". Note that the total pages, "Y", does not include the cover page,
which
is what I want. For "Y" I am using the SECTIONPAGE field, which gives me
the
total number of pages in the section. I had tried using NUMPAGES (total
pages
in the document) but that number included the cover page.

The third section is where problems start to show up. The third section
has
its own header, which I want, but the page numbering in the footer has a
problem. I want the page numbering in the third section to basically
continue
from the second section. The problem is that the page number in the third
section basically starts over at 1 and the total pages appears as the
total
pages in section 3. What I want is the first page in section 3 to be
numbered
with the last page in section 2 plus 1.

I want the total pages in both the section 2 and section 3 footers to
represent the total pages in the document, minus the cover page.

Here's a simple schemtic of what I want, showing a cover page with a 4
content pages:

--------------
COVER PAGE
--------------

--------------
Header: "Section 2"

Footer: "Page 1 of 4"
--------------

--------------
Header: "Section 2"

Footer: "Page 2 of 4"
--------------

--------------
Header: "Section 3"

Footer: "Page 3 of 4"
--------------

--------------
Header: "Section 3"

Footer: "Page 4 of 4"
--------------


--
Tom Baxter


  #5   Report Post  
Posted to microsoft.public.word.pagelayout
macropod[_2_] macropod[_2_] is offline
external usenet poster
 
Posts: 2,059
Default Headers, Footers and Page Number

Hi Tom,

Whilst Terry's approach is fine where you can be sure the page count for the first Section won't change, the following technique can
be used where the un-numbered pages count is liable to change.
In the un-numbered section, insert a field coded like {SET UnNumbered {Sectionpages}}. This create a bookmark named 'UnNumbered'
with a value equal to the number of pages in that Section.

Then, in the sections where you want X of Y page numbering, use {={NUMPAGES}- UnNumbered} for the 'Y' part.

If youve got more than one unnumbered section, replicate the process for each, using a different bookmark name each time, then
subtract all the bookmarks from the NUMPAGES value.

Note: The field brace pairs (ie '{ }') for the above example are created via Ctrl-F9 - you can't simply type them or copy & paste
them from this message.

--
Cheers
macropod
[Microsoft MVP - Word]


"Tom Baxter" wrote in message ...
I forgot to mention I am using Word 2007.
--
Tom Baxter


"Tom Baxter" wrote:

Hi everyone,

I have a simple problem (simple to describe) but for me, hard to solve.

At the end of this question I have a schematic that shows what I'm trying to
achieve. You might want to look at that before even reading my description of
the problem.

I have a document with a cover page and two subsequent sections. The cover
page is the first section.

The cover page has no header and no footer, which is what I want.

The second section (i.e., the section that follows the cover page) has its
own header and footer. The footer has the page numbers of the form, "Page X
of Y". Note that the total pages, "Y", does not include the cover page, which
is what I want. For "Y" I am using the SECTIONPAGE field, which gives me the
total number of pages in the section. I had tried using NUMPAGES (total pages
in the document) but that number included the cover page.

The third section is where problems start to show up. The third section has
its own header, which I want, but the page numbering in the footer has a
problem. I want the page numbering in the third section to basically continue
from the second section. The problem is that the page number in the third
section basically starts over at 1 and the total pages appears as the total
pages in section 3. What I want is the first page in section 3 to be numbered
with the last page in section 2 plus 1.

I want the total pages in both the section 2 and section 3 footers to
represent the total pages in the document, minus the cover page.

Here's a simple schemtic of what I want, showing a cover page with a 4
content pages:

--------------
COVER PAGE
--------------

--------------
Header: "Section 2"

Footer: "Page 1 of 4"
--------------

--------------
Header: "Section 2"

Footer: "Page 2 of 4"
--------------

--------------
Header: "Section 3"

Footer: "Page 3 of 4"
--------------

--------------
Header: "Section 3"

Footer: "Page 4 of 4"
--------------


--
Tom Baxter




  #6   Report Post  
Posted to microsoft.public.word.pagelayout
Tom Baxter Tom Baxter is offline
external usenet poster
 
Posts: 6
Default Headers, Footers and Page Number

Hi macropod,

That's a great explanation. I'll will save it away. Thanks very much.
--
Tom Baxter


"macropod" wrote:

Hi Tom,

Whilst Terry's approach is fine where you can be sure the page count for the first Section won't change, the following technique can
be used where the un-numbered pages count is liable to change.
In the un-numbered section, insert a field coded like {SET UnNumbered {Sectionpages}}. This create a bookmark named 'UnNumbered'
with a value equal to the number of pages in that Section.

Then, in the sections where you want X of Y page numbering, use {={NUMPAGES}- UnNumbered} for the 'Y' part.

If youve got more than one unnumbered section, replicate the process for each, using a different bookmark name each time, then
subtract all the bookmarks from the NUMPAGES value.

Note: The field brace pairs (ie '{ }') for the above example are created via Ctrl-F9 - you can't simply type them or copy & paste
them from this message.

--
Cheers
macropod
[Microsoft MVP - Word]


"Tom Baxter" wrote in message ...
I forgot to mention I am using Word 2007.
--
Tom Baxter


"Tom Baxter" wrote:

Hi everyone,

I have a simple problem (simple to describe) but for me, hard to solve.

At the end of this question I have a schematic that shows what I'm trying to
achieve. You might want to look at that before even reading my description of
the problem.

I have a document with a cover page and two subsequent sections. The cover
page is the first section.

The cover page has no header and no footer, which is what I want.

The second section (i.e., the section that follows the cover page) has its
own header and footer. The footer has the page numbers of the form, "Page X
of Y". Note that the total pages, "Y", does not include the cover page, which
is what I want. For "Y" I am using the SECTIONPAGE field, which gives me the
total number of pages in the section. I had tried using NUMPAGES (total pages
in the document) but that number included the cover page.

The third section is where problems start to show up. The third section has
its own header, which I want, but the page numbering in the footer has a
problem. I want the page numbering in the third section to basically continue
from the second section. The problem is that the page number in the third
section basically starts over at 1 and the total pages appears as the total
pages in section 3. What I want is the first page in section 3 to be numbered
with the last page in section 2 plus 1.

I want the total pages in both the section 2 and section 3 footers to
represent the total pages in the document, minus the cover page.

Here's a simple schemtic of what I want, showing a cover page with a 4
content pages:

--------------
COVER PAGE
--------------

--------------
Header: "Section 2"

Footer: "Page 1 of 4"
--------------

--------------
Header: "Section 2"

Footer: "Page 2 of 4"
--------------

--------------
Header: "Section 3"

Footer: "Page 3 of 4"
--------------

--------------
Header: "Section 3"

Footer: "Page 4 of 4"
--------------


--
Tom Baxter



Reply
Thread Tools
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
First page headers/footers Jen Page Layout 3 May 8th 06 11:36 PM
Formatting Odd/Even page Headers/Footers [email protected] Formatting Long Documents 3 December 15th 05 11:12 AM
Page numbering in footers, Outside margin, Page Number + Number of Pages Eric G Page Layout 6 April 22nd 05 12:28 PM
Put 2 pages with headers / footers on 1 page Two up on a page Page Layout 3 March 13th 05 05:19 PM
Take Headers & Footers off every page but first scelli2000 Page Layout 1 January 26th 05 09:11 PM


All times are GMT +1. The time now is 05:26 PM.

Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 Microsoft Office Word Forum - WordBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Word"