G
Guest
I have a form that has MANY option groups. If one of the "Header" option
groups is checked N/A then I want all the ones that appear under it to be
automatically checked N/A also. I tried this code but it didn't work:
Private Sub Frame109_AfterUpdate()
If Frame109.Value = 6 Then
Frame117.Value = 6
Frame125.Value = 6
Frame133.Value = 6
Frame141.Value = 6
End If
End Sub
I think I need to make it so that the Option button associated with N/A is
selected then the other ones I want to select will also. But I can't figure
out how to determine if that one is selected? HELP!
groups is checked N/A then I want all the ones that appear under it to be
automatically checked N/A also. I tried this code but it didn't work:
Private Sub Frame109_AfterUpdate()
If Frame109.Value = 6 Then
Frame117.Value = 6
Frame125.Value = 6
Frame133.Value = 6
Frame141.Value = 6
End If
End Sub
I think I need to make it so that the Option button associated with N/A is
selected then the other ones I want to select will also. But I can't figure
out how to determine if that one is selected? HELP!