Sub reset_optionbuttons()
'Erik Van Geit
'050517 0053
Dim sh As Shape
For Each sh In ActiveSheet.Shapes
If sh.Type = msoOLEControlObject Then
If TypeName(sh.OLEFormat.Object.Object) = "OptionButton" Then sh.OLEFormat.Object.Object.Value = False
End If
If sh.Type = msoFormControl Then
If sh.FormControlType = xlOptionButton Then sh.OLEFormat.Object.Value = False
End If
Next sh
End Sub