I am trying to run a risk assessment to decide on a on-site or mailout audit. I would like to use a number. I want check boxes (5ea) to create a number in the text box. The final number will determine the action. I need 3 check boxes to be "or" "This one "or" that". Then 3 check boxes will be "Added" to the first boxs' checked.
So far I have tried 40 or 50 expressions in the onclick event with no luck. Any suggestion?
So far
Does not work.
So far I have tried 40 or 50 expressions in the onclick event with no luck. Any suggestion?
So far
Code:
Private Sub Check0_Click()
If Me.Check0 = -1 Then
Me.Text4 = 5
Else
Me.Text4 = ""
End If
End Sub
Comment