Modifying a Formula / OR Question

C

carl

I am using this formula:

=IF(C29+D29<2;2;C29+D29)

I would like to modify it so that if C29=0, the formula returns 0.

Thank you in advance.
 
R

Richard Buttrey

I am using this formula:

=IF(C29+D29<2;2;C29+D29)

I would like to modify it so that if C29=0, the formula returns 0.

Thank you in advance.


=If(C29=0,0,IF(C29+D29<2,2;C29+D29))

HTH
__
Richard Buttrey
Grappenhall, Cheshire, UK
__________________________
 
Top