Hello,

Is there a way to turn multiple OptionButtons as False with a command For, instead of using the following procedure?

Private Sub CommandButton1_Click()OptionButton1.Value = False
OptionButton2.Value = False
OptionButton3.Value = False
OptionButton4.Value = False
OptionButton5.Value = False
OptionButton6.Value = False
OptionButton7.Value = False
OptionButton9.Value = False
OptionButton10.Value = False
OptionButton11.Value = False
OptionButton12.Value = False
OptionButton13.Value = False
OptionButton14.Value = False
OptionButton15.Value = False
...
End Sub
Thank you in advance

Regards