How to I say Is Not Null in VBA How to I say Is Not Null in VBA vba vba

How to I say Is Not Null in VBA


Use Not IsNull(Fields!W_O_Count.Value)


you can do like follows. Remember, IsNull is a function which returns TRUE if the parameter passed to it is null, and false otherwise.

Not IsNull(Fields!W_O_Count.Value)