Can anyone one help with if conditional formula

Bahaa

New Member
Joined
Oct 3, 2013
Messages
46
I need an IF condition formula for the following multiple criteria

Very Weak below 30%
Weak 30% - 49.9 %
Average 50% - 69.9 %
Good 70% - 89.9%
Excellent above 90%

Thanks
 

Excel Facts

Last used cell?
Press Ctrl+End to move to what Excel thinks is the last used cell.
If your amount was in cell A1, use:
=LOOKUP(A1,{0,0.3,0.5,0.7,0.9},{"Very Weak","Weak","Average","Good","Excellent"})
 
Upvote 0
If your amount was in cell A1, use:
=LOOKUP(A1,{0,0.3,0.5,0.7,0.9},{"Very Weak","Weak","Average","Good","Excellent"})

Thank you for the reply but what i need is that if cell O21 was less than 30% then very weak if between 50 -49.9 then weak and if between 50% - 69.9 % then Average and between 70% - 89.9% then Good and if above 90% then Excellent
 
Upvote 0
Thank you for the reply but what i need is that if cell O21 was less than 30% then very weak if between 50 -49.9 then weak and if between 50% - 69.9 % then Average and between 70% - 89.9% then Good and if above 90% then Excellent
That is exactly what the formula does. Just put "O21" in where "A1" is.
=LOOKUP(O21,{0,0.3,0.5,0.7,0.9},{"Very Weak","Weak","Average","Good","Excellent"})
 
Upvote 0

Forum statistics

Threads
1,215,064
Messages
6,122,939
Members
449,094
Latest member
teemeren

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top