I was trying to find the correct filter statement for a NULL value in Reporting Services but I always seemed to fail.
So what's the trick?
Filter: =IsNothing(Fields!YourField.Value)
Operator: =
Value: =True
Notice the = before True as this really makes a difference!
Subscribe to:
Post Comments (Atom)
2 comments:
Filter: =IsNothing(Fields!YourField.Value)
Operator: !=
Value: =(1=1) (para el, true)
THANK YOU!!!
Post a Comment