Showing posts with label SSRS Expression. Show all posts
Showing posts with label SSRS Expression. Show all posts

Friday, 17 April 2020

Exclude Zero from SSRS Expression

Hello Guys,

Please check out below tips for excluding the zero from the SSRS Expression.

=Avg(IIF(Field!FieldName.Value ="0", Nothing,Field!FieldName.Value))

Above expression is also works for the SUM, MIN, MAX and etc..

if you have any query feel free write on the comment.