Suppressing Footers

G

Guest

I have a report which is grouped by the value of 2 fields provided by a
query. [Field1] produces a single page of introduction; [Field2] produces
many pages of detail - all then repeated for the next value of [Field1]. I
am using a page footer to show the page number and other things. Is there
any way in which I can suppress the printing of the footer on the first page
produced by [Field1]. (I am using the [Field2] footer for some other
purpose, so it's not available).
 
F

fredg

I have a report which is grouped by the value of 2 fields provided by a
query. [Field1] produces a single page of introduction; [Field2] produces
many pages of detail - all then repeated for the next value of [Field1]. I
am using a page footer to show the page number and other things. Is there
any way in which I can suppress the printing of the footer on the first page
produced by [Field1]. (I am using the [Field2] footer for some other
purpose, so it's not available).

If your report includes a Report Header, you can set the Report's
PageFooter property to
Not with Rpt Hdr.
It's on the Report property sheet's Format tab.

If you do not have a report header, code the Page Footer 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

Top