OK, I have this code here:
If Me.txtEstimatedDate = Now() Then
Me.DateExited = Now()
End If
I used it under afterupdate under the DateExit field, but it's not working. So I'm taking it that I'm doing something wrong here.
I have one field called DateEntered. txtEstimatedDate takes DateEntered and estimates 90 days. What I wanted to do was if Today = txtEstimatedDate, it will automatically stamp DateExited.
If Me.txtEstimatedDate = Now() Then
Me.DateExited = Now()
End If
I used it under afterupdate under the DateExit field, but it's not working. So I'm taking it that I'm doing something wrong here.
I have one field called DateEntered. txtEstimatedDate takes DateEntered and estimates 90 days. What I wanted to do was if Today = txtEstimatedDate, it will automatically stamp DateExited.