R
Rod
Any idea why this results in NULL:
If [CALLED_ON] = Null Then
[COMMENT] = Date
End If
CALL_ON: Short Date
Comment: Text
I have also tried:
If [CALLED_ON] = Null Then
[COMMENT] = Date$
End If
Same result. CALL_ON comes in as NULL which causes the statement to be
true, but COMMENT is never updated.
If [CALLED_ON] = Null Then
[COMMENT] = Date
End If
CALL_ON: Short Date
Comment: Text
I have also tried:
If [CALLED_ON] = Null Then
[COMMENT] = Date$
End If
Same result. CALL_ON comes in as NULL which causes the statement to be
true, but COMMENT is never updated.