Bookfold Numbering

1

1clncc

The booklet marco (word 2003) I am using would not allow sections and
as such, multiple - starts page numbers are impossible. In a 32 pages
Bookfold, I resolved to use the below in the Footer to skip/print
page number:

{ IF { PAGE } <= 4 "" "{ IF { PAGE } > 30 "" " { = { PAGE }
-4 }" }

which results in :

1) No Page Number is printed for:
a) the 1st Four (4) pages (Front Cover, Inside front
cover, TOC, preface)
b) the last Two (2) pages (Back Cover, Inside back
cover)

2) Page 5-30 then are calculated /printed as page 1~26 etc.
=====================================

Wondering 1) how to make 4 <= { PAGE } <=30 to work in such an
expression.
2) some other similar samples in simulating multi-
sections for the
purpose.(how complicated it can be)
 
M

macropod

Hi 1clncc,

AFAIK no MS application supports anything like a 'X<=Y<=Z' syntax.

However, you can achieve what you're after with:
{IF{PAGE}> 30 "" {={PAGE}-4 \# 0;;}}

Cheers
 

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