Shane Devenshire said:
If the difference between A4 and B4 is very small but positive but you
are
only displaying 2 decimals you could see 0.00. If the difference is very
small but negative you could see (0.00) and if the result was exactly 0
you
might see -[.] The format for this would be 0.00_);(0.00);-
Or simply Accounting with "none" for Symbol. And with the default of 2
decimal places, the difference can be as large as about 0.0049... (meaning
any number of 9s).
The situation can be avoided by the prudent and prolific use of the ROUND
function, for example ROUND(A4-B4,2). And if A4 and B4 have values derive
from expressions, not just constants, it might be prudent to use
=ROUND(formula,2) in each of those cells.
PS: You might think that if you use ROUND(formula,2) in each of A4 and
B4, you should not need ROUND(A4-B4,2). But it would be better if you did
the latter as well to ensure that you do not encounter any surprises in
other formulas that might depend on that cell value.
----- original message -----
Shane Devenshire said:
Hi,
If the difference between A4 and B4 is very small but positive but you
are
only displaying 2 decimals you could see 0.00. If the difference is very
small but negative you could see (0.00) and if the result was exactly 0
you
might see -
The format for this would be 0.00_);(0.00);-
--
If this helps, please click the Yes button
Cheers,
Shane Devenshire