Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

isnull in SSRS expressions

How to use this formula in ssrs-expression

=NOT(isnull({Command.AAID})) or NOT(isnull({Command.HDomain}))
or NOT(isnull({Command.Adomain}))

Thanks.

like image 306
user3438498 Avatar asked Jan 25 '26 18:01

user3438498


1 Answers

I think what you're trying to do is display data based on whether or not a field has data in it or not? You can always use an IIF statement with ISNOTHING. See below for the expression.

=IIf(IsNothing(Field!Whatever),0,Field!Whatever)

If that doesn't answer your question, let me know.

like image 119
Philip Herman Avatar answered Jan 28 '26 18:01

Philip Herman



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!