Page Numbering

  • Thread starter Thread starter Dib
  • Start date Start date
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
 
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.
 
Back
Top