I have a query that I need to have the most recent training dates brought into, not sure where to go from here, any suggestions? Here is the SQL view of the query.
Thanks for any help/suggestions.
Chris
SELECT tblEmployees.[Employee Number], tblEmployees.[Employee Full Name], tblCourses.[Course Name], tblTrainingDates.[Training Date]
FROM tblEmployees INNER JOIN (tblCourses INNER JOIN tblTrainingDates ON tblCourses.[Course ID] =tblTrainingDates.[Course ID]) ON tblEmployees.[Employee Number] = tblTrainingDates.[Employee Number]
WHERE (((tblCourses.[Current Course])=Yes) AND ((tblEmployees.[Active Employee?])=Yes))
ORDER BY tblEmployees.[Employee Last Name], tblCourses.[Course Name], tblTrainingDates.[Training Date];
Thanks for any help/suggestions.
Chris
SELECT tblEmployees.[Employee Number], tblEmployees.[Employee Full Name], tblCourses.[Course Name], tblTrainingDates.[Training Date]
FROM tblEmployees INNER JOIN (tblCourses INNER JOIN tblTrainingDates ON tblCourses.[Course ID] =tblTrainingDates.[Course ID]) ON tblEmployees.[Employee Number] = tblTrainingDates.[Employee Number]
WHERE (((tblCourses.[Current Course])=Yes) AND ((tblEmployees.[Active Employee?])=Yes))
ORDER BY tblEmployees.[Employee Last Name], tblCourses.[Course Name], tblTrainingDates.[Training Date];