On a form I have three checkboxes. At least one of them has to be checked. If the user hasn't checked at least one of them I want a message box to let them know they have to select at least one of them and not let them proceed. I tried this but it doesn't work because the user has to check all three.
If Me.chkbxOne Or Me.chkbxTwo Or Me.chkbxThree = False Then
MsgBox "You must select either One, Two, or Three."
End If