Pass/Fail question

Csinaco

New Member
Joined
Jan 9, 2011
Messages
9
"Hi, and thanks in advance for any help!

I am trying to automate some the functions of my student's English progress, based on individual test scores.

There are 5 data and 1 results columns. 2 of the tests have a fail/pass component that even if the cumulative score would be enough to pass, failure on these 2 tests would result in a failing grade.

Pass/Fail conditions - A perfect score of 250 pts (Col-H, 100 grammar pts; Col-I, 50 essay pts; Col-J, 50 speech pts; Col-K, 50 comprehension pts). The summation of student scores are found in column L, and minimum of 150 pts is required to pass the test, provided these 2 “special” conditions are met;

1. The GRAMMAR part of the test has a maximum score of 100 points, but less than 60 would result in test failure.
and
2. The SPEECH part of test has a maximum score of 50 points, but less than 30 would result in test failure.

Failure in either test would negate any passing grade. :confused:

I have concocted this IF formula, but I am having trouble incorporating the 2 above conditions into this formula;

=IF(L12>=230,"PASS - AWESOME!!!",IF(L12>=200,"PASS - EXCELLENT!!",IF(L12>=185,"PASS - VERY GOOD!",IF(L12>=175,"PASS - GOOD",IF(L12>=150,"PASS",IF(<WBR>L12<=149,"FAIL"))))))

Also, in column L, where the individual scores are compiled, =SUM(H12:K12), when there are no scores, it records a 0, I would like it to be blank if columns H thru K are not populated.

Thanks again!
Marco"
 
Ok...
=IF(SUM(H3:K3),SUM(H3:K3),"") this clared the cell but
=IF(OR(H3<60,J3<30),"Fail",VLOOKUP(L3,$P$3:$Q$8,2,1)) is reporting a "Fail" in M3 as well as other cells that are blank, what am I doing wrong?


Excel Workbook
HIJKLM
2GRAM. POINTSESSAY POINTSTALKING POINTSREADINGFINAL POINTSRESULTS
30000Fail
4100103050190PASS - VERY GOOD!
540303940149Fail
680303040180PASS - GOOD!
790403530195PASS - VERY GOOD!
859502912150Fail
960503050190PASS - VERY GOOD!
1050505050200Fail
11555520Fail
12100505040240PASS - AWESOME!!!
1360402950179Fail
14123511Fail
15Fail
16Fail
17Fail
18Fail
Лист1
Excel 2010
Cell Formulas
RangeFormula
M18=IF(OR(H18<60,J18<30),"Fail",VLOOKUP(L18,$P$3:$Q$8,2,1))

[/B]
 
Last edited:
Upvote 0

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
The formula Peter gave you earlier only blanks L3, the formula in M3 is still evaluating the figures in H3 & J3, 0 is less than the pass amount so will result in a fail.

Empty cells with no formula to show a blank are also evaluated as 0, this is why you see Fail from row 15 onwards.

Try =IF(L3="","",IF(OR(H3<60,J3<30),"Fail",VLOOKUP(L3,$P$3:$Q$8,2,1)))

This will show M3 as blank when L3 is blank and show the result when it's not.
 
Upvote 0
Thanks for helping!

So that I may understand a little more, what is the function of L3,$P$3:$Q$8,2,1? What does $Q$8,2,1 do?
 
Upvote 0
Ok...
=IF(SUM(H3:K3),SUM(H3:K3),"") this clared the cell but
=IF(OR(H3<60,J3<30),"Fail",VLOOKUP(L3,$P$3:$Q$8,2,1)) is reporting a "Fail" in M3 as well as other cells that are blank, what am I doing wrong?
I see that Jason has got you sorted but we did already address that issue in posts #4 & #5 earlier in the thread. :biggrin:
 
Upvote 0

Forum statistics

Threads
1,215,069
Messages
6,122,959
Members
449,096
Latest member
Anshu121

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