HOW CAN I MAKE A FORMULA RETURN A ZERO

G

Guest

I am working with an inventory analysis spread sheet and want to calculate
projected orders and need to change negative calculations to zero so that I
can get a total number of all items required.
 
N

N Harkawat

the place where you get a negative enter the following

=min(0,your formula that makes the value zero)
 
G

Guest

Jim Lowe said:
I am working with an inventory analysis spread sheet and want to calculate
projected orders and need to change negative calculations to zero so that I
can get a total number of all items required.
Check for a negative value and replace with 0 if true
=IF(A1<0,0,A1)
 

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