Suppressing Footers

  • Thread starter Thread starter Guest
  • Start date Start date
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).
 
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
 
Back
Top