Is it possible to reset all of the option buttons in an excel sheet? I have the following macro code to reset one option button:
Sub Macro1()
ActiveSheet.Shapes("Option Button 159").Select
With Selection
.Value = xlOff
End With
End Sub
Is there any way to loop through and reset all option buttons? My issue is that there are probably 1000 option buttons on the sheet.
Thank you.
Sub Macro1()
ActiveSheet.Shapes("Option Button 159").Select
With Selection
.Value = xlOff
End With
End Sub
Is there any way to loop through and reset all option buttons? My issue is that there are probably 1000 option buttons on the sheet.
Thank you.