Different headers in report

  • Thread starter Thread starter John
  • Start date Start date
J

John

I have a report with one group section. On the first page I would like to
show a different page header than on the other pages. I tried fiddling with
all kinds of report settings but I can't get it to work. I can't seem to
find the option that prevents the page header to show on the first page.
Any help would be appreciated.
Thanks,
John
 
I have a report with one group section. On the first page I would like to
show a different page header than on the other pages. I tried fiddling with
all kinds of report settings but I can't get it to work. I can't seem to
find the option that prevents the page header to show on the first page.
Any help would be appreciated.
Thanks,
John

If you wish to not show the page header on just the first page, set
the Report's PageHeader property to:

Not with rpt hdr

It's on the property sheet's Format tab.

Or you can code the Page Header Format event:

Cancel = [Page] = 1
 
I have a report with one group section. On the first page I would like to
show a different page header than on the other pages. I tried fiddling with
all kinds of report settings but I can't get it to work. I can't seem to
find the option that prevents the page header to show on the first page.
Any help would be appreciated.


On the Format tab of the report's property sheet, there are Page Header and
Page Footer properties that let you specify whether those sections will be
shown on the Report Header and Report Footer sections.
 
Thanks guys. Works great!
I kept looking in the Page's Property sheet.
John

fredg said:
I have a report with one group section. On the first page I would like to
show a different page header than on the other pages. I tried fiddling
with
all kinds of report settings but I can't get it to work. I can't seem to
find the option that prevents the page header to show on the first page.
Any help would be appreciated.
Thanks,
John

If you wish to not show the page header on just the first page, set
the Report's PageHeader property to:

Not with rpt hdr

It's on the property sheet's Format tab.

Or you can code the Page Header Format event:

Cancel = [Page] = 1
 

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

Back
Top