A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Excel » Worksheet Functions
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

ASSIGN NUMBER SCORES TO LETTER GRADES



 
 
Thread Tools Display Modes
  #1  
Old September 15th, 2008, 06:18 PM posted to microsoft.public.excel.worksheet.functions
DOUG ECKERT[_2_]
external usenet poster
 
Posts: 68
Default ASSIGN NUMBER SCORES TO LETTER GRADES

I want to code scores "E" and "S" as passing and "U" as not passing. Scores
are in a table of months arranged horizontally. Suggestions are welcome.

DOUG
  #2  
Old September 15th, 2008, 06:46 PM posted to microsoft.public.excel.worksheet.functions
Andri
external usenet poster
 
Posts: 66
Default ASSIGN NUMBER SCORES TO LETTER GRADES

is it you look for?

=if(A1="U","Failed","Passing")


"DOUG ECKERT" wrote:

I want to code scores "E" and "S" as passing and "U" as not passing. Scores
are in a table of months arranged horizontally. Suggestions are welcome.

DOUG

  #3  
Old September 15th, 2008, 07:59 PM posted to microsoft.public.excel.worksheet.functions
DOUG ECKERT[_2_]
external usenet poster
 
Posts: 68
Default ASSIGN NUMBER SCORES TO LETTER GRADES

'Close. But, I want to tell Excel to evaluate a range of cells using that
formula. When I try, I receive an error. Utimately, I need to average all
of the scores in the range, based on the number value assigned to each
letter. I could assign a number value to "E" (Excellent), "S" (Satisfactory)
and "U" (Unsatisfactory). But, it would be better to just say the "E" and
"S" cells were passing scores and the "U" cells were failing scores. Then, I
could count either the passing or failing scores and obtain a percentage of
passing scores - (the goal of the exercise). But, first I must persuade the
formula to work on a horizontal range of cells.

DOUG

"Andri" wrote:

is it you look for?

=if(A1="U","Failed","Passing")


"DOUG ECKERT" wrote:

I want to code scores "E" and "S" as passing and "U" as not passing. Scores
are in a table of months arranged horizontally. Suggestions are welcome.

DOUG

  #4  
Old September 15th, 2008, 08:15 PM posted to microsoft.public.excel.worksheet.functions
DOUG ECKERT[_2_]
external usenet poster
 
Posts: 68
Default ASSIGN NUMBER SCORES TO LETTER GRADES

Andri: Here is what worked. It is so simple. I spun my wheels for too long
on this one.

=COUNTIF(B6:M6,"U")/((ROWS(B6:M6))*COLUMNS(B6:M6))

Thanks.

DOUG

"DOUG ECKERT" wrote:

'Close. But, I want to tell Excel to evaluate a range of cells using that
formula. When I try, I receive an error. Utimately, I need to average all
of the scores in the range, based on the number value assigned to each
letter. I could assign a number value to "E" (Excellent), "S" (Satisfactory)
and "U" (Unsatisfactory). But, it would be better to just say the "E" and
"S" cells were passing scores and the "U" cells were failing scores. Then, I
could count either the passing or failing scores and obtain a percentage of
passing scores - (the goal of the exercise). But, first I must persuade the
formula to work on a horizontal range of cells.

DOUG

"Andri" wrote:

is it you look for?

=if(A1="U","Failed","Passing")


"DOUG ECKERT" wrote:

I want to code scores "E" and "S" as passing and "U" as not passing. Scores
are in a table of months arranged horizontally. Suggestions are welcome.

DOUG

  #5  
Old September 15th, 2008, 08:31 PM posted to microsoft.public.excel.worksheet.functions
[email protected]
external usenet poster
 
Posts: 36
Default ASSIGN NUMBER SCORES TO LETTER GRADES

On Sep 15, 3:15*pm, DOUG ECKERT
wrote:
Andri: *Here is what worked. *It is so simple. *I spun my wheels for too long
on this one.

=COUNTIF(B6:M6,"U")/((ROWS(B6:M6))*COLUMNS(B6:M6))

Thanks.

DOUG



"DOUG ECKERT" wrote:
'Close. *But, I want to tell Excel to evaluate a range of cells using that
formula. *When *I try, I receive an error. *Utimately, I need to average all
of the scores in the range, based on the number value assigned to each
letter. *I could assign a number value to "E" (Excellent), "S" (Satisfactory)
and "U" (Unsatisfactory). *But, it would be better to just say the "E" and
"S" cells were passing scores and the "U" cells were failing scores. *Then, I
could count either the passing or failing scores and obtain a percentage of
passing scores - (the goal of the exercise). *But, first I must persuade the
formula to work on a horizontal range of cells.


DOUG


"Andri" wrote:


is it you look for?


=if(A1="U","Failed","Passing")


"DOUG ECKERT" wrote:


I want to code scores "E" and "S" as *passing and "U" as not passing. *Scores
are in a table of months arranged horizontally. *Suggestions are welcome.


DOUG- Hide quoted text -


- Show quoted text -



Can also use somethng like,
=SUM(COUNTIF(B2:M2,{"E","S"}))/COUNTA(B2:M2)
 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 04:35 PM.


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