Footers on second to last page

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

On all pages of my document I want a signature line to be placed in the
footer, except for one particular page that will always be either the last or
second to last page. How can I do this with IF statements. Thank you.
 
If you can define whether it's the last or next-to-last, then this is
possible. If it may be one or the other, I don't see how you can set up a
sensible condition.

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA

Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.
 
To put it on the last page then

{IF {Page} = {Numpages} "Put your signature here"}
to put it on the next to last page
{IF {Page} = {={Numpages}-1} "Put your signature here"}

As Suzanne has indicated the difficult bit is to decide which of these to
use. For that you'll need another condition to apply and you haven't told us
what that is.

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
Back
Top