Hi all,
My report header is at least two pages long. The first page is the cover sheet and the second and any subsequent pages are the report summary which is held in a subreport. Depending on the size of the database this subreport will expand appropriately.
There is no need for the footer on the cover page, as all the information given by the footer is already there and better presented. I have disabled the footer on the front page using the code:
Private Sub PageFooterSection_Format(Cancel As Integer, FormatCount As Integer)
If Me.Page = 1 Then
Me.PageFooterSection.Visible = False
Else
Me.PageFooterSection.Visible = True
End If
End Sub
This works, but it also hides the footer on all of the report header pages instead of just the first printed page. Is this an obvious oversite? How would i go about fixing this?
Thanks