Nested if formula in excel

manoj_arsul

Board Regular
Joined
Jun 27, 2018
Messages
61
Dear All,

Please guide me to find if formula below conditions

Formula in Coloumn P:
Check column D if D is Low then check C & O is less than 24 or not if Yes then print "Met"
Check column D if D is Medium then check C & O is less than 12 or not if Yes then print "Met"
Check column D if D is High then check C & O is less than 8 or not if Yes then print "Met"
Check column D if D is Critical then check C & O is less than 4 or not if Yes then print "Met"
If from above any condtion not match then print "Not Met"

C D O P
10 Low 15 Met
12 Medium 10 Not Met
8 High 6 Met
3 Critical 4 Met

Thanks & Advance !
 

Excel Facts

Whats the difference between CONCAT and CONCATENATE?
The newer CONCAT function can reference a range of cells. =CONCATENATE(A1,A2,A3,A4,A5) becomes =CONCAT(A1:A5)
Maybe like below. However, your required result does not match your described conditions?

Book1
CDEFGHIJKLMNOP
210Low15NotMet
312Medium10NotMet
48High6NotMet
53Critical4NotMet
63Critical3Met
Sheet8
Cell Formulas
RangeFormula
P2:P6P2=IF(OR(AND(D2="Low",C2=24,O2<24),AND(D2="Medium",C2<12,O2<12),AND(D2="High",C2<8,O2<8),AND(D2="Critical",C2<4,O2<4)),"Met","NotMet")
 
Upvote 0

Forum statistics

Threads
1,214,978
Messages
6,122,545
Members
449,089
Latest member
davidcom

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