IF Function

  • Thread starter adeel via OfficeKB.com
  • Start date
A

adeel via OfficeKB.com

in Cell A1 there would be numeric values from 10 to 100. in Cell A4 I want to
apply following conditions

1. If value in Cell A1 is less then 50, it returns "Danger Zone".
2. If value in Cell A1 is between 50 to 60, it returns "Need Improvement".
3. If value in Cell A1 is 60 to 80, it returns "Satisfactory".
4. If value in Cell A1 is 80 to 100, it returns "Good".

May be it would work with IF Function. but i dont know how.....please some
one help....
 
B

Bob Umlas

=IF(A1<50,"Danger Zone",IF(A1<60,"Need
Improvement",IF(A1<80,"Satisfactory","Good")))
 
J

Jarek Kujawa

=IF(A1<50,"Danger Zone",IF(AND(A1>=50,A1=<60),"Need Improvement",IF(AND
(A1>60,A1=<80),"Satisfactory",IF(AND(A1>80,A1=<100),"Good",""))))

change < to =< to suit

HIH
 
J

Jarek Kujawa

oops, sorry
use Bob's formula
;-)

=IF(A1<50,"Danger Zone",IF(AND(A1>=50,A1=<60),"Need Improvement",IF(AND
(A1>60,A1=<80),"Satisfactory",IF(AND(A1>80,A1=<100),"Good",""))))

change < to =< to suit

HIH





- Poka¿ cytowany tekst -
 
J

John

Hi
Try this
=IF(A1<=50,"Danger Zone",IF(A1<=60,"Need
Improvement",IF(A1<=80,"Satisfactory",IF(A1<=100,"Good"))))
HTH
John
 

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