S
sunilkeswani
How do i make it mandatory to check atleast one of 4 check boxes?
one the form before update, I have the code for before update
If Me!CheckBox1.Value _
Or Me!CheckBox2.Value _
Then
' This record is okay.
Else
' This record is not okay.
MsgBox "Sorry, you must check at least one box among 1 OR
2"
Cancel = True
End If
How do I do the above for 4 ?
Please help
Cheers
Sunny
one the form before update, I have the code for before update
If Me!CheckBox1.Value _
Or Me!CheckBox2.Value _
Then
' This record is okay.
Else
' This record is not okay.
MsgBox "Sorry, you must check at least one box among 1 OR
2"
Cancel = True
End If
How do I do the above for 4 ?
Please help
Cheers
Sunny