Check if the absolute value of the passed variable is within a given threshold of zero. This is used where accumulated rounding errors from floating point arithmetic causes a result that is very close to, but not quite zero, eg. 0.0001 In this case a zero check fails for the value. This function allows the zero check to be done.
The value to be zero checked.
The amount below which the value will be considered zero.
IsZeroAmt(0.001) => True IsZeroAmt(0.1) => False