Hi All, I have a worksheet that contains some checkboxes and some option buttons. I have code to deselect the checkboxes, and am looking for something similar for the option buttons. The code I have is:
...any help is appreciated.
VBA Code:
Sub ClearCheckBoxes()
Dim chkBox As CheckBox
For Each chkBox In ActiveSheet.CheckBoxes
chkBox.Value = xlOff
Next chkBox
End Sub
...any help is appreciated.