J
Jeff
I am trying to print a report with the Page footer section printing
only on odd page numbers. The report is printed in duplex. I set
[Page] to 1 on Open Report. I have been able to successfully
conditionally print the page header on odd pages only (in the same
report).
For some reason, the page footer still shows up on page 1 of the
report, and then prints correctly on the remaining pages (although it
looks correct in print preview).
The code I use "On Format" in the Page Footer section is:
If Me.Page Mod 2 = 0 Then
Me.PageFooterSection.Visible = True
Else
Me.PageFooterSection.Visible = False
End If
Thanks in advance.
only on odd page numbers. The report is printed in duplex. I set
[Page] to 1 on Open Report. I have been able to successfully
conditionally print the page header on odd pages only (in the same
report).
For some reason, the page footer still shows up on page 1 of the
report, and then prints correctly on the remaining pages (although it
looks correct in print preview).
The code I use "On Format" in the Page Footer section is:
If Me.Page Mod 2 = 0 Then
Me.PageFooterSection.Visible = True
Else
Me.PageFooterSection.Visible = False
End If
Thanks in advance.