headers and footers

R

Rockey

I have a document that may grow to two or three pages.

The first page's header will always remain the same.
If the document is 2+ pages then page 2--> will have a differen
header.

The footer on the last page will always be the same.
If the document is 2+ pages then page 1's footer will be different.

like this -

one page document
H1 + F1

or

two or more pages
page 1
H1 + F2

page 2
H2 + F2

page 3
H2 + F1


I can't seem to set this up correctly.

Thanks - Mat
 
M

macropod

Hi Rockey,

One solution:
Use File|Page Setup|Layout and check the 'Different first page' box.
Create your 1st page header & footer.
Bookmark the 1st page footer (eg Pg1Footer).
Create your 2nd page header.
For the 2nd page footer, you'll need an IF field along the lines of:
{IF{=AND({PAGE}={NUMPAGES},{PAGE}>2)}= 1 {Pg1Footer} "Text for 2nd page
footer"}

Cheers
 
Top