Hi I have the following expression. I\'m trying to say \"if the second field Is Not Null\". Can you help.
Thanks
=Iif((Fields!approved.Value = \"N\"
Use Not IsNull(Fields!W_O_Count.Value)
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.