View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Susan Susan is offline
external usenet poster
 
Posts: 1,117
Default Unselect option buttons

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


On Sep 12, 3:40*pm, Jasmine wrote:
I have a worksheet with 2 option buttons that are linked. Is there anyway to
unselect both buttons once one has been selected.