D
Deb
I want to check if the Qty field is updated, then post
Today's date in the completed field if no date exists
already, otherwise, keep the current date value.
Here's what I have, but it doesn't add today's date.
Private Sub Qty_AfterUpdate()
If [Completed] = Null Then
Me.[Completed] = Date
Else
End If
End Sub
Any ideas?
Today's date in the completed field if no date exists
already, otherwise, keep the current date value.
Here's what I have, but it doesn't add today's date.
Private Sub Qty_AfterUpdate()
If [Completed] = Null Then
Me.[Completed] = Date
Else
End If
End Sub
Any ideas?