Help with IF AND statement please

Nessi

New Member
Joined
Aug 12, 2018
Messages
1
Hi there
hoping you can please help with an IF AND STATEMENT please....

I'm trying to create a formula to return the following text based on %\ numbers:

if less than 90%, type '<90%'
if >= 90% and <=100%, type '90% - 100%'
If >= 100.01% and <=110%, type '100% - 110%'
if >110%, type '>110%'

Assuming the data is in column A1, A2 so on, what can I do? I'm completely lost and the number of brackets always confuse me ?

I wiuld be be truly Grateful for any help!
 

Excel Facts

What is the shortcut key for Format Selection?
Ctrl+1 (the number one) will open the Format dialog for whatever is selected.
Consider a Lookup


Excel 2010
ABCDEF
160%<90%'
2<90%'self-contained0.000%<90%'
3<90%'90.000%'90% - 100%'
4<90%'self-contained100.001%'100% - 110%'
5110.001%'>110%'
6
6a
Cell Formulas
RangeFormula
B1=LOOKUP(A1,E2:F5)
B2=LOOKUP(A1,{0,"<90%'";0.9,"'90% - 100%'";1.00001,"'100% - 110%'";1.100001," '>110%'"})
B3=IF(A1>E5,F5,IF(A1>=E4,F4,IF(A1>=E3,F3,IF(A1>=E2,F2,0))))
B4=IF(A1>1.10001," '>110%'",IF(A1>=1.00001,"'100% - 110%'",IF(A1>=0.9,"'90% - 100%'",IF(A1>=0,"<90%'",0))))
 
Upvote 0

Forum statistics

Threads
1,223,164
Messages
6,170,444
Members
452,326
Latest member
johnshaji

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