Page Header

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

John

Hi

Is there a way to have different report page headers between first and the
rest of the pages? My solution is to put the first header in report header
and the second in page header. Problem is it messes up the first page as
both appear on the first page. Is there a way to suppress page header for
the first page?

Thanks

Regards
 
You should be able to suppress the page header for page 1 by putting this
code into its Format event procedure:

Private Sub PageHeaderSection_Format(Cancel As Integer, FormatCount As
Integer)
Me.PrintSection = (Me.Page <> 1)
End Sub
 
Back
Top