Formula Help-Multiple IF AND OR Function

ANALYSTBANK

Board Regular
Joined
Aug 16, 2013
Messages
58
This may sound like very basic, but I'm unable to put the formula correctly,

Column I Column K

ROW 1 10.00 100

ROW 2 12.00 220

Column IColumnK
ROw110100
Row212220

<colgroup><col width="64" span="3" style="width:48pt"> </colgroup><tbody>
</tbody>

Observation: 1) I2 data value is >1.2 times of data value in I1,
2) K2 data value >2 times of data in K1

My current formula is –

=IF(AND((I2/I1)>=1.1,(K2/K1)>=2),ROUND((K2/K1),2)&" Focus","Ignore")

So, if Observation 1), and 2) both are true, formula returns ‘K2/K1 value’ with suffix ‘Focus’, else text ‘Ignore’

Now Query,
Apart from meeting above twin conditions, I need formula also to check, if I2 value is within +-10% of I1 value, AND K2 data value is still >2 compared to K1,

If so, formula should return, ‘K2/K1 value’. With suffix ‘Alert’, else text, ‘Ignore’

So,

IF I2/I1 > 1.1 AND K2/K1>2 Result should be = K2/K1 + ‘Focus’

OR

IF I2/I1 within +- 1.1 range, AND K2/K1>2 Result should be = K2/K1 + ‘Alert’

ELSE

‘Ignore’

How to put it in formula?
 
Last edited:

Excel Facts

Test for Multiple Conditions in IF?
Use AND(test, test, test, test) or OR(test, test, test, ...) as the logical_test argument of IF.
Try:

=IF(AND((I2/I1)>=1.1,(K2/K1)>=2),ROUND((K2/K1),2)&" Focus",IF(AND(ABS((I2/I1)-1)<=0.1,(K2/K1)>=2),ROUND((K2/K1),2)&" Alert","Ignore"))
 
Upvote 0

Forum statistics

Threads
1,216,614
Messages
6,131,739
Members
449,668
Latest member
michaeljamesellis

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