Hi,
I have an IIF function in my textbox expression.This is my code.
IIF(IsNothing(Fields!Duration.Value) ,
"Not released ",Int((Fields!Duration.Value/12)).ToString()+ "Y " +(Int(Fields!Duration.Value) Mod 12).ToString() + "M")
But when Duration is null the true expression doesnt work instead it displays "#error".Can anyone help me to fix this?
Thanx in Advance