GETTING A BLANK CELL

  • Thread starter Thread starter Phil
  • Start date Start date
P

Phil

What formula can I use to end up with a blank cell,if the sum of all cells
equals 0
TNA Phil
 
You can't really get an empty cell--but you can make it appear empty.

=if(sum(a1:a10)=0,"",sum(a1:a10))

If you're really trying to avoid a number if the data hasn't been entered:

=if(count(a1:a10)=0,"",sum(a1:a10))
Then you could still see a 0 if you have numbers that sum to 0.
 

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

Back
Top