Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Simple null/not null question.

Status
Not open for further replies.

Atomsk

MIS
Jun 3, 2003
60
US
Dim a
If [Required date].value <> NULL Then
MsgBox &quot;Is not NULL&quot;
Else
Text1.value = [Required date].value

End If


The value should NOT be null, but the &quot;Is not null&quot; 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.
 
I had something like this pop up a while back. Try just using &quot;&quot; instead of the NULL.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top