T
TGalin
How can I change this formula =SUM(B5
5) so that it will return a blank cell
instead of a zero if B5
5 is empty?

instead of a zero if B5

TGalin said:How can I change this formula =SUM(B55) so that it will return a blank cell
instead of a zero if B55 is empty?
TGalin said:How can I change this formula =SUM(B55) so that it will return a blank cell
instead of a zero if B55 is empty?
How can I change this formula =SUM(B55) so that it will return a blank cell
instead of a zero if B55 is empty?
=IF(your_formula=0,"",your_formula)
TGalin said:=IF(your_formula=0,"",your_formula)
pomegranate-man said:If the range might include positive/negative/zero numbers that actually sum
to zero, a zero result would be more informative than an empty-string
result. Another poster suggested a different formula that does this:
=IF(COUNT(B55)=0,"",SUM(B5
5))
(I know, "picky, picky.")