• SSRS is annoying with that.

    Use this code to do the division (rename as you wish, this is not Ms Access after all! ;-)).

    PUBLIC FUNCTION NDZ(Numerator, Denominator, DZResult)

    IF Denominator = 0 THEN

    RETURN DZResult

    ELSE

    RETURN Numerator / Denominator

    END IF

    END FUNCTION