That did it! And the performance is WAY better.
Thank you, Seth!
Here is the complete solution:
Step 1: Created a SourceCount query to provide numbered results for each person in each time period:
Code:
SELECT T1.qID
, T1.sMonth
, T1.rName
, T1.MgrName
, T1.Score
, Count(T2.qID) As ScoreNum
FROM tblScores As T1 LEFT JOIN
(SELECT
Leave a comment: