excel formula

  • Thread starter Thread starter AkitaMom
  • Start date Start date
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
 
=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
 
Back
Top