Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I am trying to uncheck radio buttons in Excel. I set them up to be
independent of one another as I have to have the ability to select more than one under a category. I also need the ability to deselect or uncheck a radio button if it is mistakenly selected. I tried going under Design Mode, then Properties, but I do not know what to change. Please help! |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Oops, I think it's called an Option button, not a radio button.
"J" wrote: I am trying to uncheck radio buttons in Excel. I set them up to be independent of one another as I have to have the ability to select more than one under a category. I also need the ability to deselect or uncheck a radio button if it is mistakenly selected. I tried going under Design Mode, then Properties, but I do not know what to change. Please help! |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Same thing
Dim opt As Object For Each opt In ActiveSheet.OLEObjects If TypeName(opt.Object) = "OptionButton" Then opt.Object.Value = False End If Next opt -- --- HTH Bob (there's no email, no snail mail, but somewhere should be gmail in my addy) "J" wrote in message ... Oops, I think it's called an Option button, not a radio button. "J" wrote: I am trying to uncheck radio buttons in Excel. I set them up to be independent of one another as I have to have the ability to select more than one under a category. I also need the ability to deselect or uncheck a radio button if it is mistakenly selected. I tried going under Design Mode, then Properties, but I do not know what to change. Please help! |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
radio button help | Excel Worksheet Functions | |||
radio button help | Excel Worksheet Functions | |||
"RADIO BUTTON" | Excel Discussion (Misc queries) | |||
How do I lock a radio button group if a N/A button is selected | Excel Discussion (Misc queries) | |||
VBA: Disable Frame and Radio Buttons based on Another Radio Button Being True | Excel Worksheet Functions |