Modifying an If Statement

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am using this:

=IF($C1=0;$D1;IF($C1<=0.15;$C1;IF(AND($B1<>0;$C1<>0);ROUNDDOWN(MEDIAN($B1:$C1);1);$D1)))

Would like to add another condition. If B1<=.10 and C1=5, then return .15.

Thank you in advance.
 
=IF($C1=0;$D1;IF($C1<=0.15;$C1;IF(AND(B1<=.10;C1=5);.15;IF($B1<>0;ROUNDDOWN(
MEDIAN($B1:$C1);1);$D1))))


--

HTH

Bob Phillips

(remove nothere from the email address if mailing direct)
 

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

Back
Top