Sorry I misread the question. If you want the page header info to appear only on the first page, use the Report Header, but since you want the page header info to appear on all pages "except" the first one, use this:
(I named my Page Header PgHdr, change the code to match the name of your Page Header, just don't use PageHeader)
Private Sub PgHdr_Format(Cancel As Integer, FormatCount As Integer)
If Me.Page = 1 Then
Me.PgHdr.Visible = False
Else
Me.PgHdr.Visible = True
End If
End Sub
PaulF