Thanks for the response but what I was interested in was how to classify the date box.
I want to use something that'll say "If this box has anything in it, do this"; would it be something along the lines of anti-null (lack of a better term)
And as for the check box being invalid, thanks. Didn't actually see that but you made me realise I was going about it twice for no reason!
This is the code that I found that mentioned the check box and I was going to do another take on it:
Private Sub YourTickBoxName_AfterUpdate()
If Me.YourTickBoxName = -1 Then
Me.Field1 = Date
Me.Field2 = DateAdd("yyyy", 3, Date)
Else
Me.Field1 = Null
Me.Field2 = Null
End If
End Sub