adding a formula in a cell but when cell = 0 cell is blank

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am trying to create an invoice so when I put qty in cell A1 and the $ value
in cell B1, cell C1 has formula =B1*A1, thats fine, but having that formula
running down C2 C3 C4 etc where there is nothing entered yet, I have $0.00
appearing in each cell, My question is how can I use this formula or
something simular to get same answer to show a blank cell when not used
 
Mike said:
I am trying to create an invoice so when I put qty in cell A1 and the $ value
in cell B1, cell C1 has formula =B1*A1, thats fine, but having that formula
running down C2 C3 C4 etc where there is nothing entered yet, I have $0.00
appearing in each cell, My question is how can I use this formula or
something simular to get same answer to show a blank cell when not used

Custom format the formula cell as e.g.,

[=0]"";General
 
Aladin -

Better to use a custom format such as

#,##0.00_);(#,##0.00);;

The spot between the second & third semicolons is for the zero format. If
left blank, zeros are suppressed. The last semicolon is for text values.
Since it, too, is blank in my example, no text values would show either

Duke

Aladin Akyurek said:
Mike said:
I am trying to create an invoice so when I put qty in cell A1 and the $
value in cell B1, cell C1 has formula =B1*A1, thats fine, but having that
formula running down C2 C3 C4 etc where there is nothing entered yet, I
have $0.00 appearing in each cell, My question is how can I use this
formula or something simular to get same answer to show a blank cell when
not used

Custom format the formula cell as e.g.,

[=0]"";General
 

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