R
Richard
I am trying to keep my file size down on my spreadsheet
which is fronted by a userform
On the userform there are several instances (30) where
only one checkbox of two can be ticked at once.
I am using the following code, but would like to know if
there are any more efficient methods of doing it, as this
makes for a lot of repetitive code!
Private Sub CheckBox171_Click()
If CheckBox171 = True Then
CheckBox181 = False
End If
End Sub
Private Sub CheckBox181_Click()
If CheckBox181 = True Then
CheckBox171 = False
End If
End Sub
Thanks
Richard
which is fronted by a userform
On the userform there are several instances (30) where
only one checkbox of two can be ticked at once.
I am using the following code, but would like to know if
there are any more efficient methods of doing it, as this
makes for a lot of repetitive code!
Private Sub CheckBox171_Click()
If CheckBox171 = True Then
CheckBox181 = False
End If
End Sub
Private Sub CheckBox181_Click()
If CheckBox181 = True Then
CheckBox171 = False
End If
End Sub
Thanks
Richard