Suppress Header last page

G

Guest

Hello -

I want to suppress the header on the last page of a report. How do I do that?

Any help will be greatly appreciated!
 
F

fredg

Hello -

I want to suppress the header on the last page of a report. How do I do that?

Any help will be greatly appreciated!
If you are including a Report footer in the report, you can set the
Report's PageHeader property to "Not with RptFtr".
It's on the Report's property sheet Format tab.

Or...
You can add an unbound control to the report:
=[Pages]
if you don't already have one, and code the PageHeader Format event:
Cancel = Me.[Page] = Me.[Pages]
 
G

Guest

Thanks, Fred!
--
Sandy


fredg said:
Hello -

I want to suppress the header on the last page of a report. How do I do that?

Any help will be greatly appreciated!
If you are including a Report footer in the report, you can set the
Report's PageHeader property to "Not with RptFtr".
It's on the Report's property sheet Format tab.

Or...
You can add an unbound control to the report:
=[Pages]
if you don't already have one, and code the PageHeader Format event:
Cancel = Me.[Page] = Me.[Pages]
 

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