Anyone know why the following expression would make my cell just say "#ERROR"?
=IIf(Sum(Fields!curr.Value) = 0, 0, Sum(Fields!due.Value) / Sum(Fields!curr.Value))
Is it not short circuiting so it still hits the division by zero? If so, would there be a way around this?