Hi,
Thanks a million the Formula worked just fine, it was simply magical. About
the requirements for letter grade and grade point, please find below:
Letter Grade formula -
IF(G17<=0,"",IF(G17<40,"F",IF(G17<45,"E",IF(G17<50,"D",IF(G17<60,"C",IF(G17<70,"B",IF(G17<=100,"A","")))))))
ABS in Total should return F for Letter Grade
Grade Point (GP) -
IF(G17<=0,"",IF(G17<40,0,IF(G17<45,1,IF(G17<50,2,IF(G17<60,3,IF(G17<70,4,IF(G17<=100,5,"")))))))
ABS should return a zero (0)
Remarks Formula (Score Sheet) -
IF(G17<=0,"",IF(G17<40,"FAIL",IF(G17<=100,"PASS","")))
ABS should return “ABS†in the Remarks column
I shall also need assistance with the following:
The following formulas are working but I need them shortened (i.e, the TCR,
TCE, TGP and the Remarks column formulas, each time I apply them I get a
FORMUAL TOO LONG, they DONT fit into the formula bar. My templates are about
70 columns long and have about the same number of rows depending on the
number of students per class.
Total Credit Registered (TCR) Formula -
IF(G10="",0,IF(H10<=5,G$9))+IF(I10="",0,IF(J10<=5,I$9))+IF(K10="",0,IF(L10<=5,K$9))+IF(M10="",0,IF(N10<=5,M$9))+IF(O10="",0,IF(P10<=5,O$9))+IF(Q10="",0,IF(R10<=5,Q$9))+IF(S10="",0,IF(T10<=5,S$9))+IF(U10="",0,IF(V10<=5,U$9))+IF(W10="",0,IF(X10<=5,W$9))+IF(Y10="",0,IF(Z10<=5,Y$9))+IF(AA10="",0,IF(AB10<=5,AA$9))+IF(AC10="",0,IF(AD10<=5,AC$9))
Total Credit Earned (TCE) Formula -
IF(H10<=0,0,IF(H10<=5,G$9))+IF(J10<=0,0,IF(J10<=5,I$9))+IF(L10<=0,0,IF(L10<=5,K$9))+IF(N10<=0,0,IF(N10<=5,M$9))+IF(P10<=0,0,IF(P10<=5,O$9))+IF(R10<=0,0,IF(R10<=5,Q$9))+IF(T10<=0,0,IF(T10<=5,S$9))+IF(V10<=0,0,IF(V10<=5,U$9))+IF(X10<=0,0,IF(X10<=5,W$9))+IF(Z10<=0,0,IF(Z10<=5,Y$9))+IF(AB10<=0,0,IF(AB10<=5,AA$9))+IF(AD10<=0,0,IF(AD10<=5,AC$9))
Total Grade Point (TGP) Formula -
(G$9*H10)+(I$9*J10)+(K$9*L10)+(M$9*N10)+(O$9*P10)+(Q$9*R10)+(S$9*T10)+(U$9*V10)+(W$9*X10)+(Y$9*Z10)+(AA$9*AB10)+(AC$9*AD10)
Remarks Formula for Final Year Students
-IF((IF(G9="",,IF(OR(G9<40,G9="ABS"),G$7,""))&"
"&IF(I9="",,IF(OR(I9<40,I9="ABS"),I$7,""))&"
"&IF(K9="",,IF(OR(K9<40,K9="ABS"),K$7,""))&" "&IF(M9="",,IF(OR(M9<40,
M9="ABS"),M$7,"")))="
",IF(R9<=0.99,"RPT",IF(R9<=1.49,"PASS",IF(R9<=2.39,"THIRD CLASS
HONOURS",IF(R9<=3.49,"SECOND CLASS HONOURS LOWER
DIVISION",IF(R9<=4.59,"SECOND CLASS HONOURS UPPER DIVISION",IF(R9<=5,"FIRST
CLASS HONOURS","")))))), "RPT" & " - " &
(IF(G9="",,IF(OR(G9<40,G9="ABS"),G$7,""))&"
"&IF(I9="",,IF(OR(I9<40,I9="ABS"),I$7,""))&"
"&IF(K9="",,IF(OR(K9<40,K9="ABS"),K$7,""))&" "&IF(M9="",,IF(OR(M9<40,
M9="ABS"),M$7,""))))
Thanks in Anticipation