ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   How to assign a default value (https://www.excelbanter.com/excel-discussion-misc-queries/130269-how-assign-default-value.html)

J.Harmon

How to assign a default value
 
I am trying to create an estimate sheet for my service shop, I have formulas
that add totals, however I have other formuals that multiply the quantity of
a part by the price. when I don't uses those lines I have to go through and
enter a zero in everythime to correct the formula error. is ther anyway to
set that when there is nothing in the cell it automatically goes to a value
of zero?

JE McGimpsey

How to assign a default value
 
One way:

=IF(A1="",0,A1*B1)

In article ,
J.Harmon wrote:

I am trying to create an estimate sheet for my service shop, I have formulas
that add totals, however I have other formuals that multiply the quantity of
a part by the price. when I don't uses those lines I have to go through and
enter a zero in everythime to correct the formula error. is ther anyway to
set that when there is nothing in the cell it automatically goes to a value
of zero?


J.Harmon

How to assign a default value
 
I tried to use a if function, but the only problem is that if I enter a
number and then delete it due to a mistake or something then it doesn't go
back to a zero value.

"JE McGimpsey" wrote:

One way:

=IF(A1="",0,A1*B1)

In article ,
J.Harmon wrote:

I am trying to create an estimate sheet for my service shop, I have formulas
that add totals, however I have other formuals that multiply the quantity of
a part by the price. when I don't uses those lines I have to go through and
enter a zero in everythime to correct the formula error. is ther anyway to
set that when there is nothing in the cell it automatically goes to a value
of zero?



JE McGimpsey

How to assign a default value
 
The I suspect you're "deleting" your value by pressing the spacebar
instead of Delete. That inputs a space character, which XL sees as a
value rather than blank.

You could use

=IF(LEN(TRIM(A1))=0,0,A1*B1)

instead...


In article ,
J.Harmon wrote:

I tried to use a if function, but the only problem is that if I enter a
number and then delete it due to a mistake or something then it doesn't go
back to a zero value.



All times are GMT +1. The time now is 10:59 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com