AlreadyLost
MIS
I have an excel sheet and currently the user can check both the No and Yes Check box. I want to disable one or the other if I check Yes then I should not be able to check no. Any ideas? Thanks
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Private Sub CheckBox1_Click()
CheckBox1.Value = IIf(CheckBox2.Value, True, False)
CheckBox2.Value = IIf(CheckBox1.Value, False, True)
End Sub
Private Sub CheckBox2_Click()
CheckBox2.Value = IIf(CheckBox1.Value, True, False)
CheckBox1.Value = IIf(CheckBox2.Value, False, True)
End Sub