K Kamayo Ako Member Local time Today, 11:54 Joined May 23, 2022 Messages 92 Mar 20, 2023 #1 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 28.1 KB · Views: 106
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
K Kamayo Ako Member Local time Today, 11:54 Joined May 23, 2022 Messages 92 Mar 20, 2023 #2 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
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
arnelgp ..forever waiting... waiting for jellybean! Local time Today, 16:54 Joined May 7, 2009 Messages 20,222 Mar 20, 2023 #3 will only work on Print Preview view of report. see PageHeaderSection Format event. open Table1 report in Print Preview Attachments PageHeaderOn2.accdb PageHeaderOn2.accdb 592 KB · Views: 112
will only work on Print Preview view of report. see PageHeaderSection Format event. open Table1 report in Print Preview
K Kamayo Ako Member Local time Today, 11:54 Joined May 23, 2022 Messages 92 Mar 20, 2023 #4 arnelgp said: will only work on Print Preview view of report. see PageHeaderSection Format event. open Table1 report in Print Preview Click to expand... Maraming salamat sir ng sobra
arnelgp said: will only work on Print Preview view of report. see PageHeaderSection Format event. open Table1 report in Print Preview Click to expand... Maraming salamat sir ng sobra