I have the following issue in SSRS when I'm doing the following calculations.
For the columns under Total Number - I'm doing the following -
=SUM(IIF(Fields!CallbackStatus.Value="Completed",1,0))
and
=SUM(IIF(Fields!CallbackStatus.Value="Outstanding",1,0))
In this particular example - the Total number of Callbacks is 0. Why by using the above expression would the below not pull back a 0 and instead a blank field.
Also in the % of Total I'm getting NaN. I'm also wanting that to be 0 if it's NaN. The functions for this is below -
=ReportItems!Textbox57.Value / ReportItems!Textbox54.Value
and
=ReportItems!Textbox61.Value / ReportItems!Textbox54.Value
any help would be great. Thanks