Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Grading System

Hi all,

I am preparing an exam marksheet.

I have 13 columns for grade .... which are E7, G7, I7, K7, M7, O7, Q7, S7,
U7, W7, Y7, AA7, AC7
The five grades are A,B,C,D and E.
Grade E is a fail.
Column AE7 shows the overall result ... PASS or FAIL.

For a student to pass the whole exam (marked as PASS in Column AE7), he must
pass a subject in E7 (get at least a D) AND he must also pass any FOUR other
subject in column G7 to AC7.

I tried a few formula but don't seem to work.

Please help me with a correct formula.

Thanks.
I appreciate your time.


  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Grading System

Hello,

Try this formula:

=IF(AND(E7<"E";COUNTIF(G7:AC7;"E")<9);"PASS";"FAI L")

This should work, if you don't have data in those cells
F7, H7, J7, etc. (or the cell value in any of those cells
is not letter E).

Ecco

-----Original Message-----
Hi all,

I am preparing an exam marksheet.

I have 13 columns for grade .... which are E7, G7, I7,

K7, M7, O7, Q7, S7,
U7, W7, Y7, AA7, AC7
The five grades are A,B,C,D and E.
Grade E is a fail.
Column AE7 shows the overall result ... PASS or FAIL.

For a student to pass the whole exam (marked as PASS in

Column AE7), he must
pass a subject in E7 (get at least a D) AND he must also

pass any FOUR other
subject in column G7 to AC7.

I tried a few formula but don't seem to work.

Please help me with a correct formula.

Thanks.
I appreciate your time.


.

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 45
Default Grading System

Hi:

Awkward, but try:

=IF(AND(E7<"E",SUM(G7<"E",I7<"E",K7<"E",M7<"E ",O7<"E",Q7<"E",S7<"E",
U7<"E",W7<"E",Y7<"E",AA7<"E")=4),"PASS","FAIL ")

Regards,

Vasant.


"Salza" wrote in message
...
Hi all,

I am preparing an exam marksheet.

I have 13 columns for grade .... which are E7, G7, I7, K7, M7, O7, Q7,

S7,
U7, W7, Y7, AA7, AC7
The five grades are A,B,C,D and E.
Grade E is a fail.
Column AE7 shows the overall result ... PASS or FAIL.

For a student to pass the whole exam (marked as PASS in Column AE7), he

must
pass a subject in E7 (get at least a D) AND he must also pass any FOUR

other
subject in column G7 to AC7.

I tried a few formula but don't seem to work.

Please help me with a correct formula.

Thanks.
I appreciate your time.




  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default Grading System

=IF(AND(E7<"E",SUMPRODUCT(1*CHOOSE({1,2,3,4,5,6,7, 8,9,10,11},G7<"E", I7<"E",
K7<"E", M7<"E", O7<"E", Q7<"E", S7<"E",U7<"E", W7<"E", Y7<"E", AA7<"E",
AC7<"E"))=4),"PASS","FAIL")

or enter this formula
=IF(AND(E7<"E",SUM(IF(MOD(COLUMN(G7:AC7),2)=1,(G7: AC7<"E")*1))=4),"PASS","F
AIL")
with ctrl+Shift+Enter rather than just enter since it is an array formula.

In either case, you can then drag fill the formula down the column.

empty cells will pass the less than "E" test, so it assumes that all cells
in the columns will have either A,B,C,D,E in it.

--
Regards,
Tom Ogilvy


"Salza" wrote in message
...
Hi all,

I am preparing an exam marksheet.

I have 13 columns for grade .... which are E7, G7, I7, K7, M7, O7, Q7,

S7,
U7, W7, Y7, AA7, AC7
The five grades are A,B,C,D and E.
Grade E is a fail.
Column AE7 shows the overall result ... PASS or FAIL.

For a student to pass the whole exam (marked as PASS in Column AE7), he

must
pass a subject in E7 (get at least a D) AND he must also pass any FOUR

other
subject in column G7 to AC7.

I tried a few formula but don't seem to work.

Please help me with a correct formula.

Thanks.
I appreciate your time.




Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Grading Scores dchristo Excel Discussion (Misc queries) 7 August 24th 09 05:55 PM
How do I open an Excel file on XP system, saved on a Vista system JLS7 Excel Discussion (Misc queries) 3 December 2nd 08 04:21 AM
grading miranda Excel Worksheet Functions 2 July 27th 07 04:18 PM
excel causing system to be in low system resource inenewbl Excel Discussion (Misc queries) 0 April 5th 05 04:11 PM
How do I create a grading system in Office Excel? Miss Dunkley New Users to Excel 1 January 29th 05 02:28 PM


All times are GMT +1. The time now is 02:36 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"