Hello OttoGraham!
As an option group may contain check boxes,toggle buttons or others, their values are usually set i.e. 1,2,3. The option group its self is holding the value. In order to set it to Null I'm using the "Double-click" event of the option group its self.
In the Double-click event for each option group that requires this feature, in Visual Basic (Each option group properties - Events tab - On Dbl Click, select "Event Procedure", click "..." beside to open Visual Basic and automatically label a sub) type in between the title label and "end sub":
MakeItNull
Now copy/paste this "Private Sub" into the same module anywhere on its own. (Not within another sub):
Private Sub MakeItNull()
On Error GoTo ErrMIN
Dim ctl As Control
Set ctl = Me.ActiveControl
Me.ActiveControl = Null
ExitMIN:
Exit Sub
ErrMIN:
MsgBox Err.Number & " " & Err.Description, vbInformation, "Make it Null error."
Resume ExitMIN
End Sub
Close and save and give it a go. Remember you are double-clicking on the option group, not the checks or toggles, and it will work better if you have a backcolor for each toggle group even if it is the same color as the form. Alternatively, you could add a command button beside each group that would do the same in its "on click" event. Bingo!

Gord
ghubbell@total.net