Display a blank cell when sum is zero

C

charlymon

How do I make a cell display a blank instead of a "0" or a "-" when
the sum of a formula is zero?
 
R

Rockee052

Hi,

Try going to [Tools] --> Options

Under the tab "View"

Look at the Window option and uncheck Zero Values

Rockee Freema
 
N

Norman Harker

Hi Charlymon!

Example:

=IF(SUM(A1:Z1)=0,"",SUM(A1:Z1))

--
Regards
Norman Harker MVP (Excel)
Sydney, Australia
[email protected]
Excel and Word Function Lists (Classifications, Syntax and Arguments)
available free to good homes.
 
A

Arvi Laanemets

Hi

=IF(MyFormula="","",MyFormula)
(Put your sum formula instead MyFormula into it)
 
Top