J Jasmine Sep 12, 2008 #1 I have a worksheet with 2 option buttons that are linked. Is there anyway to unselect both buttons once one has been selected.
I have a worksheet with 2 option buttons that are linked. Is there anyway to unselect both buttons once one has been selected.
S Susan Sep 12, 2008 #2 assuming that once your user checks an option button, another button is clicked to make something happen........... private sub commandbutton1_click() optionbutton1.value = false optionbutton2.value = false 'your code for what you want done end sub hope that helps! susan
assuming that once your user checks an option button, another button is clicked to make something happen........... private sub commandbutton1_click() optionbutton1.value = false optionbutton2.value = false 'your code for what you want done end sub hope that helps! susan
D Dave Peterson Sep 12, 2008 #3 I'd add a third "None/Neither" button I have a worksheet with 2 option buttons that are linked. Is there anyway to unselect both buttons once one has been selected. Click to expand...
I'd add a third "None/Neither" button I have a worksheet with 2 option buttons that are linked. Is there anyway to unselect both buttons once one has been selected. Click to expand...