What's wrong with this formula please?

taniab

New Member
Joined
Jun 8, 2015
Messages
42
"Advanced" : Behaviours (J11) = 100% AND % above C grade (I11)= 100% AND Attendance (E11) = greater than or equal to 92%
"Good" : Behaviours >= 50% AND % above C grade => 60% AND Attendance = greater than or equal to 90%
"Conditional" : Behaviours <= 50% AND % above C grade <=60% AND Attendance <= to 92%
Else "Error"

When attendance is 50%, it is returning "FALSE"

What is wrong with my formula please?

=IF(AND(J11>=1,E11>0.92,I11>=1),"Advanced",IF(AND(J11>=0.5,E11>=0.9,I11>=0.6),"Good",IF(AND(J11<0.5,E11<0.9,I11<0.6),"Conditional,""error")))
 

Attachments

  • Capture.JPG
    Capture.JPG
    53.2 KB · Views: 9

Excel Facts

Format cells as time
Select range and press Ctrl+Shift+2 to format cells as time. (Shift 2 is the @ sign).
=IF(AND(J11>=1,E11>0.92,I11>=1),"Advanced",IF(AND(J11>=0.5,E11>=0.9,I11>=0.6),"Good",IF(AND(J11<0.5,E11<0.9,I11<0.6),"Conditional","error")))
 
Upvote 0
That doesn't work. I think it's because "Good standing" needs to have BETWEEN formulas
 
Upvote 0
Well there was a keying error in the first formula which was causing the issue. Can you provide examples of what your expected results are?
 
Upvote 0
Maybe:
IF(AND(J11>=1,E11>0.92,I11>=1),"Advanced",IF(AND(J11>=0.5,E11>=0.9,I11>=0.6),"Good",IF(OR(J11<0.5,E11<0.9,I11<0.6),"Conditional","error")))
 
Upvote 0

Forum statistics

Threads
1,215,032
Messages
6,122,772
Members
449,095
Latest member
m_smith_solihull

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