Report footer to bottom of page or page footer to last page only (1 Viewer)

AceBK

Registered User.
Local time
Today, 09:22
Joined
Dec 2, 2011
Messages
75
I am trying to create an invoice report. I want to add all the costs from the detail section in my footer. I have accomplished this in either the Report footer and/or the page footer, but the problem is that the report footer doesn't go to the bottom of the page, and the page footer doesn't go to just the last page. I have tested a bunch of suggestions that don't seem to work.

1. Print page footer with Report header = NO - only works if your report is two pages or more.

2. Private Sub PageFooterSection_Format(Cancel As Integer, FormatCount As Integer)
If Page = Pages Then
Me.[TextBoxName].Visible = True
Else
Me.[TextBoxName].Visible = False
End If
End Sub
The Page functions worked, but it did not change the results from page to page. If it was a two page report, then the if statement is false and the text box was not visible on page 1, but it also was not visible on page 2.

Please help me if possible.
Thanks,
AceBK
 

stopher

AWF VIP
Local time
Today, 15:22
Joined
Feb 1, 2006
Messages
2,395
You can pad out the report so the report footer appears further down the page. I think you might find the solution here.
 

Users who are viewing this thread

Top Bottom