Need to disable an 'Option Button' whether by coding or manually. That 'Option Button' must be greyed-out with 3D appearance when disable. I am using M.S. Office LTSC Professional Plus 2021.
I have tried the following code that works: Sub OptionButton11_Click() ActiveSheet.OptionButtons("Option Button 11").Enabled = False End Sub No color change occurs though, (Color of button as well as caption text remains unchanged) The following code also works: Sub OptionButton11_Click() ActiveSheet.OptionButtons("Option Button 11").Visible = False End Sub But that is not what I need. I want to achieve the result same as described in the following link: Grey out optionbuttons when a specific option button is selected Example given by ‘Siddharth Rout’ is marvelous. Can someone tell how to use the same coding for the same result on an ‘Excel Sheet’ instead of ‘User Form’? Note: An Excel's ActiveX 'Option Button' is not appeared same as an Excel's Form Control 'Option Button'. Further, ActiveX Caption is not vertically Center-Aligned and only looks '3D' while clicking on the disabled 'Option Button'.