Supress Page Header on 1st Page of Group Header

  • Thread starter Thread starter D. Mullins
  • Start date Start date
D

D. Mullins

Have a report which is given to various groups. Instead
of printing a multitude of reports--I print one, with the
group header as the trigger to reset the page numbering.
I want to have a page header on every page--except the
first page of the header. I've tried to hide--using the
visible property of the page header--set visible to "no"
when [Page]=1--but I don't think Access can see the page
no at the time when the page header is printing.
 
D. Mullins,

I *think* this should do the trick, but I haven't checked it...
On the On Format event of the Group Footer section, put code...
Me.Section(acPageHeader).Visible = False
.... and then on the On Format event of the Group Header...
Me.Section(acPageHeader).Visible = True

Let us know!
 
Back
Top