Dim a
If [Required date].value <> NULL Then
MsgBox "Is not NULL"
Else
Text1.value = [Required date].value
End If
The value should NOT be null, but the "Is not null" box never pops up. Rather, the value of the [Required date] field is displayed in Text1. The values are being displayed, so they are obviously not NULL. [Required date] is a date/time field. Any ideas? Thanks a lot.
If [Required date].value <> NULL Then
MsgBox "Is not NULL"
Else
Text1.value = [Required date].value
End If
The value should NOT be null, but the "Is not null" box never pops up. Rather, the value of the [Required date] field is displayed in Text1. The values are being displayed, so they are obviously not NULL. [Required date] is a date/time field. Any ideas? Thanks a lot.