in the properties of the first chk box, tab events.
in the on click event, you could add some code to assigne a specific value to the second chk box.
ex:
Code:
Private Sub Check0_Click()
If Me.Check0 = -1 Then
Me.Check2 = -1
Else
Me.Check2 = 0
End If
End Sub
good luck, max.