Page Numbering

D

Dib

Hi,

How can I get this page numbers to work example

Page 1
Page 1a
Page 1b
Page 2
Page 2a
and so on, is this possible to do.

Thanks
Dib
 
F

Fredg

How are we, or the report, to know when to stop numbering page 1's and go to
page 2, etc.
 
A

Allen Browne

Try a text box with Control Source of:

="Page " & ([Page] \ 3 + 1) & Choose([Page] Mod 3, "", "a", "b")

This uses:
- integer division to divide the page number by 3;
- Mod to get the remainder after dividing by 3;
- the Choose() function to pick the appropriate suffix.
 

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