I am looking for a way to conditionally hide the page header of a report. The report groups by people on field [person ID]. The [person id] footer has property Force New Page = after section. The page header should not appear on the first page of each person's group section of the report. If the person has more than one page to their section of the report, then the page header should appear on all subsequent pages of their report.

Seems I recall the ability to have [Page] reset itself to 1 for each section that forces a new page. If so, then would the following work?
Private Sub PageHeaderSection_Format(Cancel As Integer, FormatCount As Integer)
If Me.Page = 1 Then
Me.PrintSection = False
Else
Me.PrintSection = False
End If
End Sub
Thank you.