Page footer only first page

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a report with section page header and page footer, I need that the
page footer appear only at the first page of pages.
Help please!!
 
Using the PageFooter OnFormat property you can use the code

Me.Section(4).Visible = (Me.Page = 1)
 
You can move this code to the OnFormat of the page footer and add a setting
to the Height of the section

If Me.Page = 1 Then
Me.Section(4).Visible = True
Me.Section(4).Height = 5045 ' Set the right height
Else
Me.Section(4).Visible = False
Me.Section(4).Height = 500 ' Set the right height
End If
 
Back
Top