Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Param
 
Posts: n/a
Default Find avg & Max for grades

I have range (A2:A35) for subject grades (A,B,C,D,E)
What I want to know, it is possible to find avg grade and max grade score by
student?

pls guide me.
TQ
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Ardus Petus
 
Posts: n/a
Default Find avg & Max for grades

Average: =CHAR(ROUND(AVERAGE(CODE(A2:A35)),0))
Max: =CHAR(MIN(CODE(A2:A35)))

Grades should be UPPERCASE

HTH
--
AP

"Param" a écrit dans le message de
...
I have range (A2:A35) for subject grades (A,B,C,D,E)
What I want to know, it is possible to find avg grade and max grade score

by
student?

pls guide me.
TQ



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Bob Phillips
 
Posts: n/a
Default Find avg & Max for grades

The max grade is simple

=CHAR(MIN(IF(B1:B10="Bob",CODE(A1:A10))))

which is an array formula, it should be committed with Ctrl-Shift-Enter, not
just Enter.

Average is harder as what is the avearge of A and B, A, B, A+? I have
assumed down

=CHAR(ROUNDUP(AVERAGE(IF(B1:B10="Bob",MATCH(A1:A10 ,{"A","B","C","D","E"},0))
),0)+64)

also an array formula

--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)

"Param" wrote in message
...
I have range (A2:A35) for subject grades (A,B,C,D,E)
What I want to know, it is possible to find avg grade and max grade score

by
student?

pls guide me.
TQ



  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Ardus Petus
 
Posts: n/a
Default Find avg & Max for grades

I forgot to point out these are array formulas, to be validated by
Ctrl+Shift+Enter

--
AP

"Ardus Petus" a écrit dans le message de
...
Average: =CHAR(ROUND(AVERAGE(CODE(A2:A35)),0))
Max: =CHAR(MIN(CODE(A2:A35)))

Grades should be UPPERCASE

HTH
--
AP

"Param" a écrit dans le message de
...
I have range (A2:A35) for subject grades (A,B,C,D,E)
What I want to know, it is possible to find avg grade and max grade

score
by
student?

pls guide me.
TQ





  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Param
 
Posts: n/a
Default Find avg & Max for grades

Hi Mr.Ardus Petus,

solution that u provide really help me a lot. but i face new problem when i
enter - or x symbol. Actually i enter grade from range A to E. Beside that i
enter x if the student absent. - for not sitting the paper.
any idea?

"Ardus Petus" wrote:

I forgot to point out these are array formulas, to be validated by
Ctrl+Shift+Enter

--
AP

"Ardus Petus" a écrit dans le message de
...
Average: =CHAR(ROUND(AVERAGE(CODE(A2:A35)),0))
Max: =CHAR(MIN(CODE(A2:A35)))

Grades should be UPPERCASE

HTH
--
AP

"Param" a écrit dans le message de
...
I have range (A2:A35) for subject grades (A,B,C,D,E)
What I want to know, it is possible to find avg grade and max grade

score
by
student?

pls guide me.
TQ








  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Peo Sjoblom
 
Posts: n/a
Default Find avg & Max for grades

Something like

=CHAR(ROUND(AVERAGE(IF((CODE(A2:A10)=65)*(CODE(A2 :A10)<=69),CODE(A2:A10))),0))

array entered

--

Regards,

Peo Sjoblom

Northwest Excel Solutions

www.nwexcelsolutions.com

(remove ^^ from email address)

Portland, Oregon




"Param" wrote in message
...
Hi Mr.Ardus Petus,

solution that u provide really help me a lot. but i face new problem when
i
enter - or x symbol. Actually i enter grade from range A to E. Beside that
i
enter x if the student absent. - for not sitting the paper.
any idea?

"Ardus Petus" wrote:

I forgot to point out these are array formulas, to be validated by
Ctrl+Shift+Enter

--
AP

"Ardus Petus" a écrit dans le message de
...
Average: =CHAR(ROUND(AVERAGE(CODE(A2:A35)),0))
Max: =CHAR(MIN(CODE(A2:A35)))

Grades should be UPPERCASE

HTH
--
AP

"Param" a écrit dans le message de
...
I have range (A2:A35) for subject grades (A,B,C,D,E)
What I want to know, it is possible to find avg grade and max grade

score
by
student?

pls guide me.
TQ






  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Param
 
Posts: n/a
Default Find avg & Max for grades

Hi, thanks for your tips. but i still not understand for what "bob" and why
there is two different range e.g B1:B10 and A1:A10.

my grade all at cell e.g A2:A35. (beside grade A,B,C,D,E there is also
simbol "-" and "x".
I try this:
Average: =CHAR(ROUND(AVERAGE(CODE(A2:A35)),0))
Max: =CHAR(MIN(CODE(A2:A35)))


work fine. But when i enter simbol "-" or "x" it show #value.

Pls show how to overcome this problem. TQ

"Bob Phillips" wrote:

The max grade is simple

=CHAR(MIN(IF(B1:B10="Bob",CODE(A1:A10))))

which is an array formula, it should be committed with Ctrl-Shift-Enter, not
just Enter.

Average is harder as what is the avearge of A and B, A, B, A+? I have
assumed down

=CHAR(ROUNDUP(AVERAGE(IF(B1:B10="Bob",MATCH(A1:A10 ,{"A","B","C","D","E"},0))
),0)+64)

also an array formula

--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)

"Param" wrote in message
...
I have range (A2:A35) for subject grades (A,B,C,D,E)
What I want to know, it is possible to find avg grade and max grade score

by
student?

pls guide me.
TQ




  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Param
 
Posts: n/a
Default Find avg & Max for grades

Pls I am waiting to know. Anyone pls reply
TQ in advance.

"Param" wrote:

I have range (A2:A35) for subject grades (A,B,C,D,E)
What I want to know, it is possible to find avg grade and max grade score by
student?

pls guide me.
TQ

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
Find and Replace blakrapter Excel Worksheet Functions 3 December 15th 05 12:25 AM
Code needed to find records from bottom up Andy Excel Discussion (Misc queries) 4 December 5th 05 03:27 AM
find a cells from a range of cell kelvintaycc Excel Worksheet Functions 2 April 2nd 05 07:20 PM
How do I find a column entry closest to a particular value feman007 Excel Worksheet Functions 2 March 9th 05 03:48 PM
Excel has a "Find Next" command but no "Find Previous" command. Michael Fitzpatrick Excel Discussion (Misc queries) 2 January 10th 05 11:45 PM


All times are GMT +1. The time now is 11:54 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"