Report footer only on first page

  • Thread starter Thread starter Tim
  • Start date Start date
T

Tim

I have a report where I want to first page to have a
different header then the other pages. I also want a page
footer, but only on the first page.

I was able to handle the header by putting the first page
header in as the report header and the other pages header
as page header and set the Page Header property to Not
with Report Header.

Can any one tell me how to show a page footer only on the
first page?

Tim
 
I have a report where I want to first page to have a
different header then the other pages. I also want a page
footer, but only on the first page.

I was able to handle the header by putting the first page
header in as the report header and the other pages header
as page header and set the Page Header property to Not
with Report Header.

Can any one tell me how to show a page footer only on the
first page?

Tim

Code the Page Footer Format event:
Cancel = [Page] > 1
 
Back
Top