ok ... two check boxes ... chk1 and chk2
Put this in the AfterUpdate events ... which will look like so:
Private Sub chk1_AfterUpdate(
If Me.chk1 = True Then Me.chk2 = False
End Sub
Private Sub chk2_AfterUpdate()
If Me.chk2 = True Then Me.chk1 = False
End Sub
mx