Try putting this code in Before Update event for the form, or in the Lost Focus event for the actual checkbox frame.
If IsNull([yourFrameName]) Then
Msgbox "Choose at least one option.", _
vbOkOnly,"Warning!"
Me.yourFrameName.SetFocus
End If
Or if you are storing that value in a table, just...