So I have 2 sheet, the first one contains student's name, subject, and their grade.
Sheet1 :
A | B | C |
---|---|---|
Mark | Math | A |
Dave | Physic | C |
Carol | Math | B |
Dave | P.E | B |
Carol | Physic | A |
Mark | Physic | A |
The second one is the grading system used :
Sheet2:
A | B |
---|---|
A | 4 |
B | 3 |
C | 2 |
D | 1 |
And the third sheet is the average grade of each student.
Sheet3:
A | B |
---|---|
Mark | 4.0 |
Dave | 2.5 |
Carol | 3.5 |
I accomplished this by adding another column to the first sheet that use a vlookup function. Can we make the third sheet directly without adding another column to the first sheet?