I want to hid the page footer on all but page one. Here is my code, but it doesn't appear to work in print preview...
Private Sub Report_Page()
If Me.Page = 1 Then
Me.PageFooterSection.Visible = True
Else
Me.PageFooterSection.Visible = False
End If
End Sub
Private Sub Report_Page()
If Me.Page = 1 Then
Me.PageFooterSection.Visible = True
Else
Me.PageFooterSection.Visible = False
End If
End Sub