I have a MS Access query that shows officer ID's with test scores and the dates they took each type of annual certification test. However, I'm trying to group by officer ID and list on a single row for each officer the dates for each type of test they took so I can flag when they are due to take the same type of test again. The officers don't take all types of tests on the same day, and typically not on on the same day as other officers. As an example, an officer may qualify for a daytime shoot and nighttime shoot on one day, then 4 months later qualify at a rifle shoot. I would like to show all the dates for each officer where scores were entered regardless of the score.
The fields in my query are:
OfficerID, TestDate, DayScore, NightScore, RifleScore
I'm trying to get it to obtain results like these:
JohnDoe123, 03/15/2010, 03/15/2010, 10/04/2010
FJacobs123, 02/01/2010, 04/27/2010, 11/11/2010
I'm basically substituting the qualification date for the score. It seems like it should be pretty simple, but I'm stuck. Please help.
Thanks.