The IIF statement can be used in expressions to screen for division by zero:
=IIF(Fields!PossibleZero.Value=0,0,Fields!Denominator.Value/IIF(Fields!PossibleZero.Value=0,1,Fields!PossibleZero.Value))
SSRS does not short circuit IIF arguments. Therefore, using a single IIF function to screen for ...