if error !!!

deecarrion

New Member
Joined
Feb 17, 2016
Messages
5
Help!

What is wrong here? Why isn't it working?

=IF((i7)<=10,"Low 10%", =IF(( i7) <=30 and >10,"Low Mid 11-30%",= IF((i7) <=60 and >30 , " Mid Range 31-60%",=if((i7) <=80 and >60,"High Mid 61-80%",=if((i7) <=100 and >80 ,"High 81-100%","error"))


:(
 

Excel Facts

What do {} around a formula in the formula bar mean?
{Formula} means the formula was entered using Ctrl+Shift+Enter signifying an old-style array formula.
in your 2nd IF (and all after that)
You don't have to test for >10
Because if the value WAS <= 10, then the FIRST IF would have been true, and returned LOW 10%

So you can just remove all the and parts.
And remove all the = symbols on each of the IFs, except the very first one.
And you need to add a bunch of ) to the end.
There should be 1 ) for every IF in the formula.
 
Last edited:
Upvote 0
Yip, you don't need to test the lower value so you can go with

Code:
=IF(I7<=10,"Low 10%",IF(I7<=30,"Low Mid 11-30%",IF(I7<=60," Mid Range 31-60%",IF(I7<=80,"High Mid 61-80%",IF(I7<=100,"High 81-100%","error")))))

Or another option might be

Code:
=LOOKUP(I7, {0,10,30,60,80,100}, {"Low 10%","Low Mid 11-30%","Mid Range 31-60%","High Mid 61-80%","High 81-100%","Over 100%"})
 
Upvote 0

Forum statistics

Threads
1,216,090
Messages
6,128,765
Members
449,467
Latest member
sdafasfasdf

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