I am getting this error while dividing the two column Values in ssrs report.
1.OccupiedUnitsAtEndOfDate = 0.00
2.UnitCapacityAtEndOfDate = 0.00
These are the values I am Getting.
But If I put this expression I am getting #Error in result set for this expression.
=IIF(Sum(Fields!UnitCapacityAtEndOfDate.Value) = 0.00 OR
Sum(Fields!OccupiedUnitsAtEndOfDate.Value) = 0.00, 0,
Sum(Fields!OccupiedUnitsAtEndOfDate.Value) /Sum(Fields!UnitCapacityAtEndOfDate.Value))
Can anyone Suggest Me where I am doing wrong.Please help me on this?