Hi Baaul,
i too faced the same prob few days back, i couldn't resolve it in report designer.
But i checked for null values at the backend.
For eg.
SQL Server
--------------------
SELECT isNull(Cost, -999) FROm tablename.
In Report Designes use the code like the one below
----------------------------------------------------
=IIf(Fields!Cost.Value = -999, 0, Fields!Cost.Value)
Hope the reply is helpful..
Cheers
Chakri
|