D
D. M.
Hi all,
Is it possible to have a subreport show/hide based on a checkbox selection?
I have a form with the following event:
Private Sub PercentRent_AfterUpdate()
'After Update of checkbox
'Check if Percentage Rent checkbox is selected
'then show or hide subform
If Me.PercentRent = True Then
Me.frmPercentRent.Visible = True
Else
Me.frmPercentRent.Visible = False
End If
Can I do something like this on the report?
Thanks
Is it possible to have a subreport show/hide based on a checkbox selection?
I have a form with the following event:
Private Sub PercentRent_AfterUpdate()
'After Update of checkbox
'Check if Percentage Rent checkbox is selected
'then show or hide subform
If Me.PercentRent = True Then
Me.frmPercentRent.Visible = True
Else
Me.frmPercentRent.Visible = False
End If
Can I do something like this on the report?
Thanks