excel formula

A

AkitaMom

want to add a1+b2, if that is less than zero, I want c2 to read 0, if it is
more than zero I want what 1a+b2 equals to show
 
D

Dave Peterson

=max(0,a1+b2)

or

=if(a1+b2<0,0,a1+b2)


want to add a1+b2, if that is less than zero, I want c2 to read 0, if it is
more than zero I want what 1a+b2 equals to show
 
Top