Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Remove Page Footer when Report footer is shown

Status
Not open for further replies.

UHNSTrust

Technical User
Dec 2, 2003
262
GB
I want to be able to hide the page footer when the report footer is on the page. Any ideas?

The reason is that on the page footer I have a 'Key' for the report that could span multiple pages if there are enough records. What I then have set up is the Force New Page as Before Section on the report footer. The problem is the Key is printing on the page with the report footer although the information on that page does not need the Key.

Thanks in advance

Jonathan
 
You might be able to add code to the On Format event of the Page Footer section:

Code:
    Cancel =([Page]=[Pages])

This may require adding a text box bound to [pages] in your report.

Duane
Hook'D on Access
MS Access MVP
 
If you look at the report properties, you should find the Page Footer property, which will allow you to select "Not With Rpt Footer", amongst other options.
 
Remou and Dhookam,

Thanks for the reply. Went with Remou's suggestion in the end as it seemed easier to implement.

Jonathan
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top