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

M

Mike T

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
 
A

Aladin Akyurek

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
 
D

Duke Carey

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
 
Top