Unselect option buttons

  • Thread starter Thread starter Jasmine
  • Start date Start date
J

Jasmine

I have a worksheet with 2 option buttons that are linked. Is there anyway to
unselect both buttons once one has been selected.
 
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
 
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.
 
Back
Top