M
Mark Wolven
I have a Form that is using the following code on an On Exit Event
Procedure - it works when I have a text string that I change to a
differenct text string. However, if the field is blank (Null) and I
add text, it doesn't evaluate properly. What I am trying to do is
update the [DateMapped] field when I make a change in the
[SourceField] field. Thoughts?
Private Sub Source_Field_Exit(Cancel As Integer)
If Me.Source_Field <> Me.Source_Field.OldValue Then
Me![DateMapped] = Date
End If
End Sub
Procedure - it works when I have a text string that I change to a
differenct text string. However, if the field is blank (Null) and I
add text, it doesn't evaluate properly. What I am trying to do is
update the [DateMapped] field when I make a change in the
[SourceField] field. Thoughts?
Private Sub Source_Field_Exit(Cancel As Integer)
If Me.Source_Field <> Me.Source_Field.OldValue Then
Me![DateMapped] = Date
End If
End Sub