Help with IF statement

D_Spark

Board Regular
Joined
Feb 4, 2007
Messages
232
Can some please help with my IF Statement?

=IF(F24=1,IF(C24>0,IF(D24>0,IF(E24>0,"Outstanding"),IF(F24=1,IF(C24>0,IF(D24>0,IF(E24=0,"Exceeds Expectation")))))))

I wish for the If statment to do the following

first IF
F24=1
c24>0
d24>0
e24>0
then show "Outstanding"

second IF
F24=1
c24>0
d24>=0
E24=0
then show "Exceeds Expectation"

second IF
F24<1
and any other permitation
then show "Does Not Meet Expectation"
 

Excel Facts

Format cells as time
Select range and press Ctrl+Shift+2 to format cells as time. (Shift 2 is the @ sign).
Try:
Code:
=IF(F24<1,"Does not meet expectations",IF(AND(C24>0,D24>0,E24>0),"Outstanding",IF(AND(C24>0,D24>=0,E24=0),"Exceeds Expectation")))
I think though it may fail as it doesn't take into consideration all your permutations...
 
Upvote 0
Can some please help with my IF Statement?

=IF(F24=1,IF(C24>0,IF(D24>0,IF(E24>0,"Outstanding"),IF(F24=1,IF(C24>0,IF(D24>0,IF(E24=0,"Exceeds Expectation")))))))

I wish for the If statment to do the following

first IF
F24=1
c24>0
d24>0
e24>0
then show "Outstanding"

second IF
F24=1
c24>0
d24>=0
E24=0
then show "Exceeds Expectation"

second IF
F24<1
and any other permitation
then show "Does Not Meet Expectation"

Based on that, does this not work?

=IF(AND(F24=1,C24>0,D24>0,E24>0),"Outstanding",IF(AND(F24=1,C24>0,D24>=0,E24=0),"Exceeds Expectation","Does Not Meet Expectation"))
 
Upvote 0

Forum statistics

Threads
1,224,613
Messages
6,179,903
Members
452,948
Latest member
Dupuhini

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