Sum of 0 when all cells empty

F

feathercabin

I have a spreadsheet that has a row where we add statistical data by date.
If the date hasn't yet arrived and there's no information in any of the
cells, my spreadsheet shows "0" as a total and I need it to remain blank.

How can I accomplish this?
 
E

Eduardo

Hi,
suppose that the date is in cell A1 and you sum column B you can use

=if(A1="","",sum(B1:B10))
 
B

Bob Umlas

You can format the cell as General;General;
Or whatever format you want, like #,##0_);(#,##0);
Or format the sheet to not display zero values.
 

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