G Guest Jul 1, 2004 #1 How do I find Null Field Values, I am trying to do something like: If .Fields("Date").Value Is Null Then
How do I find Null Field Values, I am trying to do something like: If .Fields("Date").Value Is Null Then
A Albert D. Kallal Jul 1, 2004 #2 You have to use the funciton IsNull() So, you can go: if IsNull(.Fields("Date").Value) = true then