You may need to create a report that prints landscape like a book. You want the left side of the page to say page 1, and the right side of the page to say 2. This is actually pretty simple. There are only 2 steps.
1) Put an unbound text box on each side of the report's page footer. Put the following in the control source of both text boxes:
=GetPageNo()
2) Copy and paste the following function into the code of the report. (If you are unfamiliar with how to do this, while in design veiw, go to View | Code on the menu bar, and paste the code a couple of lines below the Option Explicit).
=======================================
Private Function GetPageNo() As Integer
Static staPageNo As Integer
If staPageNo > 0 Then
staPageNo = staPageNo + 1
GetPageNo = staPageNo
Else
GetPageNo = 1
staPageNo = 1
End If
End Function
=======================================
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.