I'm often comparing Actual $ Results vs what was planned. The formula for this is ((Actual - Plan)/Plan).
In some cases the Plan was zero, this giving an error. To fix that I've added an IFERROR(formula,0), which has fixed that problem.
However in some cases the Plan isn't exactly zero but very close. So with a denominator this small the quotient is like 10 figures long, which is essentially useless.
What do I do to fix the latter case? I'd like that to be zero as well.
In some cases the Plan was zero, this giving an error. To fix that I've added an IFERROR(formula,0), which has fixed that problem.
However in some cases the Plan isn't exactly zero but very close. So with a denominator this small the quotient is like 10 figures long, which is essentially useless.
What do I do to fix the latter case? I'd like that to be zero as well.