I need to identify a short date field that has not had a date entered into it.
Tried creteria ="Nul" but this doesn't work.
Ofer - 09 Sep 2005 11:42 GMT
Try this
If isnull(creteria) then
End If

Signature
I hope that helped
Good luck
> I need to identify a short date field that has not had a date entered into it.
> Tried creteria ="Nul" but this doesn't work.
Erik - 09 Sep 2005 11:50 GMT
In the Criteria box, try typing: Is Null
or in the actual SQL, try:
WHERE (TheDateField Is Null)
Regards,
Erik
>I need to identify a short date field that has not had a date entered into
>it.
> Tried creteria ="Nul" but this doesn't work.