I have a table, Grades, where three fields are entered: StudentID, TestType (Quiz 1, Quiz 2,Final Exam), and Test Score. Therefore, if there were 3 quizzes and a final exam given for a class, there will be four rows for that student, one for each TestType.
A crosstab query from the wizard did a great job of generating a comprehensive Grade Sheet (TestType is my row heading), with one row per student that organize all their scores nicely under separate columns for Quiz 1, Quiz 2, etc:
TRANSFORM Avg(Grades.Score) AS AvgOfScore
SELECT Grades.StudentID, Avg(Grades.Score) AS [Score Average]
GROUP BY Grades.StudentID
PIVOT Grades.TestType;
While a score average could be great, the grades are weighted. The final class grade is 50% quiz average and 50% final exam score. Is there a way to perform these calculation either in the crosstab query or in the report that will populate based on the query? I'm looking for an average of score when TestType like Quiz%, as well as avg([quiz score],[final exam])
Thanks in advance for any suggestions!!