I have a problem here that I've been wrestling with for a while.
I have a table, ID, Date, and Grade.
It is set up that way, and I tried
SELECT tblGrades.StudentID, tblGrade.Grade, Max(tblGrade.GradeDay)
FROM tblGrades
GROUP BY tbGrades.StudentID, tblGrades.Grade;
I figured since I'm...