Supress Page Header on 1st Page of Group Header

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.
 
S

Steve Schapel

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!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top