How can i get a date field if it is older that 12 months to have the corresponding check box value change to unchecked?? i have tried the following code to no avail, any help welcome please
Private Sub Form_Current()
If Date1 Is LessThan.DateAdd("m", 12, Now()) Then
ChkBox1.Value = False
End If
End Sub
Private Sub Form_Current()
If Date1 Is LessThan.DateAdd("m", 12, Now()) Then
ChkBox1.Value = False
End If
End Sub