Null Field Values

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How do I find Null Field Values, I am trying to do something like:
If .Fields("Date").Value Is Null Then
 
You have to use the funciton IsNull()

So, you can go:


if IsNull(.Fields("Date").Value) = true then
 
Back
Top