Radio buttons acting strangely

Mikeymike_W

Board Regular
Joined
Feb 25, 2016
Messages
171
Hi All,

I'm having some issue with my radio buttons.
They were working fine, I have them all grouped into their relevant sections however now when a select a radio button in a particular group it changes the appearance of the other selected radio buttons making the black dot appear smaller.

Also I have a macro to deselect all the radio buttons which again used to work but now only works for some of the groups:

For Each obj In ActiveSheet.OLEObjects
Set obj = obj.Object
'Test to check it's an option button
If TypeOf obj Is MSForms.OptionButton Then
obj.Value = False
End If

If TypeOf obj Is MSForms.CheckBox Then
obj.Value = False
End If

If TypeOf obj Is MSForms.TextBox Then
obj.Value = ""
End If

Any help would be greatly appreciated,

Mike
 

Excel Facts

When they said...
When they said you are going to "Excel at life", they meant you "will be doing Excel your whole life".

Forum statistics

Threads
1,214,667
Messages
6,120,810
Members
448,990
Latest member
rohitsomani

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top