saturnin02 said:
WIN XP HE, Word 2002
Hi,
How do I insert a footer to appear on ONLY one specific page of a long
document?
Tx,
S
Two ways:
- Insert section breaks at the start and end of that page. With the cursor
between the section breaks, open the header/footer area and go to the
footer. On the H&F toolbar, click the Same As Previous button to turn off
that linkage. Click the Next button on the toolbar to get to the following
section's footer, and again turn off Same As Previous. Click the Previous
button to get back to the section between the breaks, and insert the desired
footer text. Close the H&F pane.
- Alternatively, if the document is complete and the pagination won't
change: Don't bother with section breaks. Open the (only) footer on any
page. Insert a Page field. Type the additional items to make it look like
this (I'm showing the field code for the Page field, but you'll see a page
number):
IF {PAGE} = 123 "Show this text"
but type the number of the desired page instead of 123, and type your
desired text within the quotes. Now select the whole expression and press
Ctrl+F9, which turns it into a single field. The desired text will appear
only on the page whose number you typed.
There's a variant of the second method in which you place a bookmark
anywhere on the desired page, and then replace the page number in the field
with yet another field, a PageRef field that contains the bookmark's name.
For example, if you call the bookmark FooterHere then the footer should
contain
{IF {PAGE} = {PAGEREF FooterHere} "Show this text"}
This will work even when the pagination changes, but be careful not to
delete the bookmark while editing.