Hello All,
I have a large worksheet that has many option buttons that have the function of changing a value at a location on the same sheet, for example:
However, none of my option buttons works since I upgraded to 2021
The buttons are grouped. When is select Design Mode I am able to select a button and then look at its properties. I can see that the group designations are there, and it says that the button is enabled.
But they just don't work. I notice that, when in Design Mode, if I select a button, it will be correctly named in the address box, but the function box for every button says =EMBED("Forms.OptionButton.1","")
I am sure this was not there when I originally designed the worksheet.
Any suggestions?
Thanks,
David
I have a large worksheet that has many option buttons that have the function of changing a value at a location on the same sheet, for example:
VBA Code:
Private Sub OptionButton10_Click()
Range("d387") = "No"
Range("q389").Select
End Sub
The buttons are grouped. When is select Design Mode I am able to select a button and then look at its properties. I can see that the group designations are there, and it says that the button is enabled.
But they just don't work. I notice that, when in Design Mode, if I select a button, it will be correctly named in the address box, but the function box for every button says =EMBED("Forms.OptionButton.1","")
I am sure this was not there when I originally designed the worksheet.
Any suggestions?
Thanks,
David