L
L Mehl
Different users of the app will want or not want to see report footer (
appears as a separate page).
I can make the section invisible with a DLookup of a Y or N value from a
'parameters' table
Private Sub ReportFooter_Format(Cancel As Integer, FormatCount As Integer)
Reports!rptValuationDetail.Section(acFooter).Visible = _
DLookup("[z_text]", "sysparms", "[z_pname] = " & Chr(34) &
"printReportGrandTot" & Chr(34)) = "Y"
End Sub
The next thing to do is reduce the total page count by 1 and not create the
last page, based on the DLookup.
Can someone outline a way to do this or suggest a resource?
Thanks for any help.
Larry Mehl
(e-mail address removed)
appears as a separate page).
I can make the section invisible with a DLookup of a Y or N value from a
'parameters' table
Private Sub ReportFooter_Format(Cancel As Integer, FormatCount As Integer)
Reports!rptValuationDetail.Section(acFooter).Visible = _
DLookup("[z_text]", "sysparms", "[z_pname] = " & Chr(34) &
"printReportGrandTot" & Chr(34)) = "Y"
End Sub
The next thing to do is reduce the total page count by 1 and not create the
last page, based on the DLookup.
Can someone outline a way to do this or suggest a resource?
Thanks for any help.
Larry Mehl
(e-mail address removed)