joemuskrat Posted April 18, 2003 Share Posted April 18, 2003 I developed a program that tracks public school music students. Part of the program allows the teacher to grade a student on up to 15 musical selections. I know about "average" for numerical grades, but is there some way to average letter grades? Link to comment Share on other sites More sharing options...
danjacoby Posted April 18, 2003 Share Posted April 18, 2003 Create a calc field that converts the grades to numbers. Usually it's 4 for an "A", 3 for a "B", etc., but your school or class may have a different system. Link to comment Share on other sites More sharing options...
Lee Smith Posted April 18, 2003 Share Posted April 18, 2003 Hi Joe, Try this case statement: Case( Grade= "A+", 4.5, Grade="A", 4.25, Grade = "A-",4.00, Grade= "B+", 3.5, Grade="B", 3.25, Grade = "B-",3.00, Grade= "C+", 2.5, Grade="C", 2.25, Grade = "C-",2.00, Grade= "D+", 1.5, Grade="D", 1.25, Grade = "D-",1.00, Grade= "F", 0 ) HTH Lee Link to comment Share on other sites More sharing options...
joemuskrat Posted April 19, 2003 Author Share Posted April 19, 2003 Hi Lee, Thanks for your reply. Assuming Grade is a field name and I use the same field name for A+ to F each time for 15 fields in a field I create for the Case statement, how do I get an average of the 15 fields? Wow, is that a confusing sentence or what? Joe Link to comment Share on other sites More sharing options...
Recommended Posts
This topic is 7838 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now