After Update

sandylt

Registered User.
Local time
Today, 12:31
Joined
Mar 11, 2004
Messages
36
I have two fields Complete Date and Status. If the status is changed to Complete then the Complete Date will fill in with today's date. Any Solutions?
 
In the AfterUpdate event of Status:

Code:
If Me.Status = "Complete" Then
    Me.CompleteDate = Date()
Else
    Me.CompleteDate = Null
End If
 

Users who are viewing this thread

Back
Top Bottom