I have a bound form that has 8 checkboxes. I have a report based on the same table with a predifined format that cannot be changed.
A user checks the "checkbox" on the form only if the condition is met. I have 2 columns Yes and No on the report. I am trying to avoid having 2 checkboxes for each condition (Yes and No)on my form, but need the "NO" (if not checked)to be indicated on the report as well as the "YES" (if checked on the form).
Was looking for something like this:
'PROPSHUFF is the forms condition checkbox
Private Sub Report_Activate()
If Not IsNull(Me.PROPSHUFF) Then
Me.Check119.Visible = False
End If
End sub
Any ideas?
Cheers,
A user checks the "checkbox" on the form only if the condition is met. I have 2 columns Yes and No on the report. I am trying to avoid having 2 checkboxes for each condition (Yes and No)on my form, but need the "NO" (if not checked)to be indicated on the report as well as the "YES" (if checked on the form).
Was looking for something like this:
'PROPSHUFF is the forms condition checkbox
Private Sub Report_Activate()
If Not IsNull(Me.PROPSHUFF) Then
Me.Check119.Visible = False
End If
End sub
Any ideas?
Cheers,