Printing footer on last page of section only

  • Thread starter Thread starter Claudia
  • Start date Start date
C

Claudia

I followed the instructions at the MVP website for using
an IF code to get a footer to print only on the last
page. Neat trick! However, what I need to do is get a
footer to print on the last page of each section. Is there
a way to do this? (I have Word 2003, and am running it on
XP Professional OS.)
 
Use a SectionPages field instead of a NumPages field in your IF field.
--

Charles Kenyon

Word New User FAQ & Web Directory: http://addbalance.com/word

Intermediate User's Guide to Microsoft Word (supplemented version of
Microsoft's Legal Users' Guide) http://addbalance.com/usersguide

See also the MVP FAQ: http://www.mvps.org/word which is awesome!
--------- --------- --------- --------- --------- ---------
This message is posted to a newsgroup. Please post replies
and questions to the newsgroup so that others can learn
from my ignorance and your wisdom.
 
Charles and Greg - it doesn't work to use SectionPages
instead of NumPages on any but the first section. On the
subsequent sections, the footer simply disappears
altogether and shows up nowhere when Field Codes are
turned off for view in Options. I'm wondering if I can
somehow specify in the field the number of the section. I
thought Word knows the SectionPages field code is the
*current* field code...?
-----Original Message-----
Use a SectionPages field instead of a NumPages field in
your IF field.
 
Claudia,

Works fine here. Is your section page numbering set to
restart at 1 with each section?

Try:
{IF {PAGE} = {SECTIONPAGES}"Print this text" }
 
Back
Top