Odd or Even Page numbers only

jessabridge

Registered User.
Local time
Today, 14:42
Joined
Jun 29, 2011
Messages
35
I have 2, 4 page report.

I would like 1 report to be numbered 1,3,5,7
and the second to be numbered 2,4,6,8.

I cannot use the subreport because the pages are a maximum. It changes all my formatting. Is there a way to make it number by odds or evens?
Jessa
 
ControlSource for the odd number page control
="Page " & [Page]*2-1

ControlSource for the even number page control
="Page " & [Page]*2
 
OMG!!!!
Thank you so much! It worked perfectly!!!!!!!
 

Users who are viewing this thread

Back
Top Bottom