How can a MS Word list force a new page after 30 records?

A

Allen

Hi,

How can a MS Word list force a new page after 30 records? This will help me
match up the list with printed labels. I have tried setting up something
like:

if mergerec mod 30 = 0, then <page break>

But, mod doesn't seem to be a function available in MS Word XP.

Please help.

Thanks,
Allen
 
P

Peter Jamieson

To use this approach, try something like

{ IF { =mod({ MERGEREC },30) } = 0 "<put a pagebreak character instead of
this text>" "" }

where all the {} are the special field code braces you can insert using
ctrl-F9
 
A

Allen

Thanks Peter! It worked perfectly.

Peter Jamieson said:
To use this approach, try something like

{ IF { =mod({ MERGEREC },30) } = 0 "<put a pagebreak character instead of
this text>" "" }

where all the {} are the special field code braces you can insert using
ctrl-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