I have a report in which Iam checking for 0 in the detail row ,as follows ( there are some NULLS in the DB, that's why Iam checking for ISNOTHING)
IIF( Fields!Sales.Value IsNothing or Fields!Sales.Value = 0 , "0", Fields!Sales.Value)
In the Total row if I say Fields!TotalSales.Value it not giving me any value if all the sales are 0.
Eg : 0
0
0
0----- It not giving me any value .It shows a blank cell.
But if the sales are like,
12
10
0
5
It gives me total as ---27 ,which was supposed to be.
Can any one helpme out with this.