footer - IF condition

F

FJM

I am using Word 2003
I have a 10 page document which starts a footer at page 2 (the front page is
a "cover" page only
I want the footer on page 2 to read as follows
Page 2 (The next page is 3)
I then want to continue with this format i.e
Page 3 will read
Page 3 (The next page is 4)
I want this to continue until I reach page 10 where I want it to read
Page 10 (End )

This is so if I have to add any documents then I can still maintain
integrity and succesion without having to reprint the whole of the document

The first part Page 2 etc I am OK with.
It is the second part where I am increasing the page number by 1 and
forcing the text on the last page to alter where I have a problem
I have looked at some of the help and have tried several times to use
advanced field properties to include the following IF statement to make the
second part work
If PAGE < NumPages "Page Number is {PAGE}+1" "End"
I cannot get any combination of these characters to work
Can anyone help with what is probably a very simple piece of code
Thank you for any replies
 
S

Stefan Blom

You'll need the following field construct:

{IF { PAGE } < { NUMPAGES } "The next page is { = { PAGE } + 1 }" "End" }

Note that each pair of field delimiters, { }, must be inserted by pressing
Ctrl+F9.

To update the fields in the selection, press F9 (or switch to Print Preview
and back). To show/hide all field codes in the document, use Alt+F9.
 
M

macropod

Some other ways:
{={NUMPAGES}-{PAGE} \# "'The next page is '{={PAGE}+1};;End"}
or
{=({NUMPAGES}>{PAGE})*({PAGE}+1) \# "'The next page is '0;;End"}
 
S

Stefan Blom

I bow in honor of the master of field codes. :)

--
Stefan Blom
Microsoft Word MVP



macropod said:
Some other ways:
{={NUMPAGES}-{PAGE} \# "'The next page is '{={PAGE}+1};;End"}
or
{=({NUMPAGES}>{PAGE})*({PAGE}+1) \# "'The next page is '0;;End"}


--
Cheers
macropod
[Microsoft MVP - Word]


Stefan Blom said:
You'll need the following field construct:

{IF { PAGE } < { NUMPAGES } "The next page is { = { PAGE } + 1 }" "End" }

Note that each pair of field delimiters, { }, must be inserted by
pressing Ctrl+F9.

To update the fields in the selection, press F9 (or switch to Print
Preview and back). To show/hide all field codes in the document, use
Alt+F9.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top