Hi guys,
I'm having a problem. I have a worksheet with a lot of checkboxes on them. I want to make a button which unchecks all checkboxes at once. For most of the checkboxes it works to use
however, I have a few activex checkboxes that have some conditions in a _click sub. like:![]()
checkbox3.value=false
![]()
private sub checkbox3_click() If CheckBox4.Value = True Then CheckBox3.Value = False Else: If CheckBox3.Value = True Then MsgBox ("") CheckBox3.Value = False Else: CheckBox3.Value = True End If End If end sub
if I trie to uncheck the checkbox by using .value=false it does not work. What is going wrong? Does anyone have an idea how to solve this issue? FYI can't use non-active x checkbox in this case.
thanks in advance!
Bookmarks