B
BoB
Touching up a report by adding a checkbox on a main form to specify whether
to display a summary report in the report footer.
' Show or Hide Report Summary
If [Forms]![frmMain]![SummaryFlag] = 0 Then
Me!rptIVSummary.Visible = False
Else
Me!rptIVSummary.Visible = True
End If
It works great exept I now left with a blank last page where the report
would have shown. How can I hide the complete footer rather than the
report?
thanks
to display a summary report in the report footer.
' Show or Hide Report Summary
If [Forms]![frmMain]![SummaryFlag] = 0 Then
Me!rptIVSummary.Visible = False
Else
Me!rptIVSummary.Visible = True
End If
It works great exept I now left with a blank last page where the report
would have shown. How can I hide the complete footer rather than the
report?
thanks