Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
'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
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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) |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Assign a letter to a number and then retrive | Excel Worksheet Functions | |||
Assign a number each letter on list compounding occurence @ each e | Excel Worksheet Functions | |||
try to convert letter grades into GPA grade points | Excel Worksheet Functions | |||
Converting Letter Grades to Numeric | Excel Worksheet Functions | |||
How can I assign a number value to a letter grade in Excel? | Excel Worksheet Functions |