Clear an option box

  • Thread starter Thread starter JT
  • Start date Start date
J

JT

I have several option boxes on a form which work great BUT if something is
checked in one of the check boxes by mistake I cannot clear it.
the option groups each contain 3 check boxes if this helps.
can someone help me please it is driving me crazy.
 
I have several option boxes on a form which work great BUT if something is
checked in one of the check boxes by mistake I cannot clear it.
the option groups each contain 3 check boxes if this helps.
can someone help me please it is driving me crazy.

Add a 4th option button. Give it a value of 4 (or any not already used
option value).
Code the Option Group's AfterUpdate event:
If Me.OptionGroupName = 4 Then
Me!OptionGroupName = Null
End If
 
Back
Top