Removing Placeholder Values

G

Guest

I dont want to show place holder values that show were there are formulas but
the cells referenced by the formulas dont have values as yet. e.g cell G34
has formula: =SUM(F24:F33) and the referenced range has no values but G34
shows 0.00. The number format of G34 is NUMBER with a 1000 SEPARATOR to 2
DECIMAL PLACES.
 
D

Dave Peterson

I'd use count.

=if(count(f24:f33)=0,"",sum(f24:f33))
or
=if(count(f24:f33)<10,"",sum(f24:f33))

Any cell filled with a number shows the sum--or all the cells filled in with
numbers shows the sum.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top