B
Brian Bastl
Hi all,
I have an invoice report which contains 2 subreports. Normally, everything
fits on 1 page. But in those instances where either or both subreports grow
and force a 2nd page, I'd like to only show the page footer on the last
page. Page footer contains some calculated totals from subreports.
I tried the following, but in both instances the footer disappears from the
report entirely:
Private Sub PageFooterSection_Format(Cancel As Integer, FormatCount As
Integer)
Me.PageFooterSection.Visible = ([Page] = [Pages])
End Sub
Private Sub PageFooterSection_Format(Cancel As Integer, FormatCount As
Integer)
Me.PageFooterSection.Visible = (Me.[Page] = [Pages])
End Sub
What am I not doing correctly?
TIA,
BB
I have an invoice report which contains 2 subreports. Normally, everything
fits on 1 page. But in those instances where either or both subreports grow
and force a 2nd page, I'd like to only show the page footer on the last
page. Page footer contains some calculated totals from subreports.
I tried the following, but in both instances the footer disappears from the
report entirely:
Private Sub PageFooterSection_Format(Cancel As Integer, FormatCount As
Integer)
Me.PageFooterSection.Visible = ([Page] = [Pages])
End Sub
Private Sub PageFooterSection_Format(Cancel As Integer, FormatCount As
Integer)
Me.PageFooterSection.Visible = (Me.[Page] = [Pages])
End Sub
What am I not doing correctly?
TIA,
BB