Page Numbering

  • Thread starter Thread starter Colin
  • Start date Start date
C

Colin

Hi I have a report in which I have various customers and
I print the report using page numbering from page 2
onwards for each customer

I have text box with the control source as follows:

=IIf([Page]>1,"Page " & [Page],"")

This works fine except that if there is only one page
then for the next customer, on what would be their page
one, it prints "Page 2" with subsequent pages not being
numbered, until the next new customer.

Please can anyone help?

Rgds Colin
 
I suspect that your problem is elsewhere. Where are you re-setting the value
for Page?

You might try the following variant to see what happens.

=IIF([Page]=1,"","Page " & [Page]

Also, as a trouble shooting technique try just printing [Page] and see what
happens with the numbering when you have a one page customer report followed by
another customer.
 
Back
Top