conditional formula

L

lena

I have this formula:
=(B8>80%)*(B12*0.38%)/12
How do I add to the above a 2nd and 3rd condition such as:
(B8>85.01%)*(B12*.64%)/12
(B8>90.01%)*(B12*.94%)/12
And what is the term to describe this?
 
M

Max

You could try a nested IF, like this:
=IF(B8>90.01%,(B12*0.94%)/12,IF(B8>85.01%,(B12*0.64%)/12,IF(B8>80%,(B12*0.38%)/12,0)))

The left to right sequence in the expression is important. And I've taken
the liberty to have it returned as zero if the value in B8 is <=80%.
--
Max
Singapore
http://savefile.com/projects/236895
Downloads:23,000 Files:370 Subscribers:66
xdemechanik
 
L

lena

THANK YOU !!!! Works perfectly!
--
lena


Max said:
You could try a nested IF, like this:
=IF(B8>90.01%,(B12*0.94%)/12,IF(B8>85.01%,(B12*0.64%)/12,IF(B8>80%,(B12*0.38%)/12,0)))

The left to right sequence in the expression is important. And I've taken
the liberty to have it returned as zero if the value in B8 is <=80%.
--
Max
Singapore
http://savefile.com/projects/236895
Downloads:23,000 Files:370 Subscribers:66
xdemechanik
 

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

Top