Modifying a Formula / OR Question

G

Guest

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.
 
S

Sandy Mann

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

--
HTH

Sandy
(e-mail address removed)
Replace@mailinator with @tiscali.co.uk
 
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
__________________________
 

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

Similar Threads


Top