I am trying to run a conditional function in an SSRS expression, that conditionally renders a "-" if any of the fields are empty, and otherwise performs some arithmetic.
The problem is that the control doesn't seem to go to the second condition at all. I am getting the fields in the Report filled with "ERROR".
=IIf(IsNothing(Fields!sales_overall.Value Or Fields!current.Value) = false,
"-" ,
Fields!sales_ overall.Value/Fields!current.Value)
Can anyone point out what I'am doing wrong here?