Thread: [Solved] Zero (0) in cell
View Single Post
 
Old 01-18-2011, 09:29 PM
ConneXionLost's Avatar
ConneXionLost ConneXionLost is offline Windows XP Office 2003
Simulacrum
 
Join Date: Jan 2010
Location: Victoria, Canada
Posts: 86
ConneXionLost is on a distinguished road
Default

Quote:
Originally Posted by macropod View Post
No, it'll only hide 0s in the cells to which the custom format is applied.
Please note the OP's question; the part where it refers to "cell formatting".

Also,

Quote:
Originally Posted by macropod View Post
IF(OR(A1=0,B1=0),"",A1+B1)
Your formula would work better as:

Code:
IF(AND(A1=0,B1=0),"",A1+B1)
to avoid the embarrassment of 0+4=""
Reply With Quote