Quote:
Originally Posted by ConneXionLost
You can use a custom format like this:
but, be warned, it will hide ALL zeros.
|
No, it'll only hide 0s in the cells to which the custom format is applied.
An alternative is to modify the formula. For example:
=IF(A1+B1=0,"",A1+B1)
or:
IF(OR(A1=0,B1=0),"",A1+B1)
The first hides the result only if it evaluates to 0, whereas the second hides the result if either of the inputs is 0.