T
Thomas Wright
I'm not able to get the else statement to filter properly. Using a noncheck
box statement, it works but using the check box just does not do it. If some
one could set me straight it would make life much brighter now. I'm using a
checkbox to indicate to filter a form based upon the current status of a
patient indicated by a checkbox (Check16).
Thanks .... Tom
Private Sub Check72_Click()
If Check72 = No Then
Me.FilterOn = False
Else
Me.Filter = "Check16 = 'Yes'"
Me.FilterOn = True
End If
End Sub
box statement, it works but using the check box just does not do it. If some
one could set me straight it would make life much brighter now. I'm using a
checkbox to indicate to filter a form based upon the current status of a
patient indicated by a checkbox (Check16).
Thanks .... Tom
Private Sub Check72_Click()
If Check72 = No Then
Me.FilterOn = False
Else
Me.Filter = "Check16 = 'Yes'"
Me.FilterOn = True
End If
End Sub