Had another snag while trying to fill out the last bit of this it might be because I am trying to do this in VBA that I am having so much problems
Private Sub Security_Clearance_Closed_Date_AfterUpdate()
If IsDate(Me![Security Clearance Closed Date] + 1735 < Today()) = True Then
Me![Security Clearance Needed] = 1
Else
Me![Security Clearance Needed] = 0
End If
Also tried below,
Private Sub Security_Clearance_Closed_Date_AfterUpdate()
If Me![Security Clearance Closed Date] + 1735 < Today() = True Then
Me![Security Clearance Needed] = 1
Else
Me![Security Clearance Needed] = 0
End If
Basically, I want to know with a checkbox(which is a field in a table this time and also on the form) that the closed date for Sec Clearances isnt 4 years and 9 months ago(basically after 5 years its no good but I only am allowed 90 days at the end to fix it.)
So, lol, what did I screw up this time?