Using code on a form to look for a null value for a field on my form. For soem reason this isn't working. I'm checking for a null value in the field on the form. Even if the ClosedDate field is null it still shows the Not null message box. Am I doing something wrong? Thanks
Private Sub Command102_Click()
If Me.ClosedDate = Null Then
MsgBox "Null"
Else
MsgBox "Not Null"
End If
End Sub
Private Sub Command102_Click()
If Me.ClosedDate = Null Then
MsgBox "Null"
Else
MsgBox "Not Null"
End If
End Sub