Solved How do I put a page header on every page except the first?

Kamayo Ako

Member
Local time
Today, 11:54
Joined
May 23, 2022
Messages
92
I have a report with report header and page header. On this case i want to display only page header starting on Page 2 and so on.


Thank you so much in advance
Kamayo Ako
 

Attachments

  • PAGE HEADER.PNG
    PAGE HEADER.PNG
    28.1 KB · Views: 106
I've got it. thank you...

I use below code


Private Sub PageHeaderSection_Format(Cancel As Integer, FormatCount As Integer)
If Me.Page > 1 Then
Me.PageHeaderSection.Visible = True
Else
Me.PageHeaderSection.Visible = False
End If

End Sub
 
will only work on Print Preview view of report.
see PageHeaderSection Format event.
open Table1 report in Print Preview
 

Attachments

Users who are viewing this thread

Back
Top Bottom