I can easily change individual checkboxes based on results of another using
What is the syntax for changing nore than one checkbox by using groupname
E.g I have groups of checkboxes - one of which the groupname is 'primary_chkbox'
Can I change all checkboxes with this groupname in one statement
eg. primary_chkbox.value = False ?
Code:
Private Sub CheckBox202_Click()
If CheckBox202.Value = True Then
CheckBox203.Value = False
CheckBox204.Value = False
CheckBox205.Value = False
CheckBox206.Value = False
End If
End Sub
What is the syntax for changing nore than one checkbox by using groupname
E.g I have groups of checkboxes - one of which the groupname is 'primary_chkbox'
Can I change all checkboxes with this groupname in one statement
eg. primary_chkbox.value = False ?