G gumby Nov 6, 2007 #1 Can you make the page header only show up on the pages two and on in an Access report? David
J John Spencer Nov 6, 2007 #2 Add code to the Format event of the page header as follows. Private Sub PageHeaderSection_Format(Cancel As Integer, FormatCount As Integer) Me.Section(acPageHeader).Visible = Me.Page <> 1 End Sub -- John Spencer Access MVP 2002-2005, 2007 Center for Health Program Development and Management University of Maryland Baltimore County ..
Add code to the Format event of the page header as follows. Private Sub PageHeaderSection_Format(Cancel As Integer, FormatCount As Integer) Me.Section(acPageHeader).Visible = Me.Page <> 1 End Sub -- John Spencer Access MVP 2002-2005, 2007 Center for Health Program Development and Management University of Maryland Baltimore County ..
F fredg Nov 6, 2007 #3 Can you make the page header only show up on the pages two and on in an Access report? David Click to expand... In addition to John's answer, if the report has a report header, you can set the report's Page Header property to Not with rpt header. It's on the Report property sheet's Format tab.
Can you make the page header only show up on the pages two and on in an Access report? David Click to expand... In addition to John's answer, if the report has a report header, you can set the report's Page Header property to Not with rpt header. It's on the Report property sheet's Format tab.