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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Report Footer Issue

Status
Not open for further replies.

Tetol

MIS
Dec 21, 2010
26
US
I have access 2007.

My report footer contains a legal disclaimer. However, it doesn't print on the last page of the report, at the very buttom.

So the disclaimer usually ends up in diffrent positions on the last page depending on the lenght of the records.

How can I get the report footer to print at the very bottom of the last page?

Thank you in advance.
 
This would be nice but how do you make it invisible on all but the last page? If possible, this should solve my issue

Thank you.
 
You would need to add Page numbering controls in the report page footer section. Add the disclaimer to the page footer. Then add code to the On Format event of the page footer like:
Code:
   Me.txtDisclaimer.Visible = (Me.Page = Me.Pages)

Duane
Hook'D on Access
MS Access MVP
 
dhookom - Thank you so much. It worked perfectly.

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top