Stop page headers printing on report footer

  • Thread starter Thread starter John Baker
  • Start date Start date
J

John Baker

Is there a way of stopping the printing of the page headers on the page that
has the report footer. The report footer appears on the last page by
itself.

Any help greatly appreciated.

John B
 
Private Sub PageHeaderSection_Format(Cancel As Integer, FormatCount As
Integer)

If [Page] = [Pages] Then
Me.PageHeaderSection.Visible = False
End If

End Sub
 
Is there a way of stopping the printing of the page headers on the page that
has the report footer. The report footer appears on the last page by
itself.

Any help greatly appreciated.

John B

Set the Report's Page Header property to
Not with rpt footer
It's located on the Report property sheet Format tab.
The default is All Pages.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top