I have a UserForm with 5 columns and 3 checkboxes in each column. The user can only check 1 of the three check boxes in each column. What VBA code would I use to manage this part of the form. I have use the following when the user can only select one checkbox or the other:
[pre]
[/pre]
Radio buttons won't work for this application since there are more than 30 checkboxes on this form.
Thanks in advance for your help.
[pre]
Code:
Private Sub chk1_chkbox_Click()
chk2_chkbox = Not (chk1_chkbox)
End Sub
Radio buttons won't work for this application since there are more than 30 checkboxes on this form.
Thanks in advance for your help.