header question for report footer

W

WebBuilder451

I have a report grouped by company name so that each conpany prints on it's
own page(s). My header is in the page header. I'd like to supress printing of
the header on the report footer page. Not sure how to do this. I'm sure this
is an easy one for some of you.
Thanks
KES
--
(i''ll be asking a lot of these, but I find C# totally way cooler than vb
and there''s no go''n back!!!)
thanks (as always)

kes
 
M

Marshall Barton

WebBuilder451 said:
I have a report grouped by company name so that each conpany prints on it's
own page(s). My header is in the page header. I'd like to supress printing of
the header on the report footer page. Not sure how to do this. I'm sure this
is an easy one for some of you.


Make sure you have a text box somewhere in the report that
includes Pages in its control source expression. The usual
=Page & " of " & Pages
will take care of this requirement.

Then you can use a line of code in page header section's
Format event procedure:
Cancel = (Me.Page = Me.Pages)
 
F

fredg

I have a report grouped by company name so that each conpany prints on it's
own page(s). My header is in the page header. I'd like to supress printing of
the header on the report footer page. Not sure how to do this. I'm sure this
is an easy one for some of you.
Thanks
KES

Set the Report's PageHeader property to
Not with Rpt Ftr
It's on the Report property sheet's Format tab.
 
W

WebBuilder451

perfect!
Thanks!
--
(i''ll be asking a lot of these, but I find C# totally way cooler than vb
and there''s no go''n back!!!)
thanks (as always)

kes
 
M

Marshall Barton

fredg said:
Set the Report's PageHeader property to
Not with Rpt Ftr


Sheesh, I am glad you posted that, John, I forgot that
option in the property.
 

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