Question Query Help?

benny

New member
Local time
Today, 11:21
Joined
Jun 7, 2009
Messages
7
If i were to guess i would say this is probably something easy for the people here however ......

I have created a Db to track training within my company. I created several tables as to not make redundant records. The problem is i can easily pull out training that has been completed but also need to get a list of employees who have not completed a specific training module. The tables in question are as follows.

EmployeeMain: Table
SAP - Long Integer - Primary Key
LastName - Text
FirstName - Text
Onsite - Y/N
Off Site - Y/N

EmployeeDepartment: Table
SAP - Long Integer - Primary Key - 1 to 1 with EmployeeMain - PK
Department - Lookup From Department list table
Supervisor - Lookup
Manager - Lookup
JobTitle - Lookup
Section - Lookup
HireDate - Short Date
Site - Lookup

EmployeeTraining: Table
ID - Autonumber - PK
SAP - Long Integer - 1 to Many with EmployeeMain
Course - Lookup
CourseDate - Short Date

As you can see i put the training in and can retrieve training completed easily. I cannot seem to figure out how to get a list of the people who have not completed a particular training module out though. Is this possible? If so, can someone please lead me in the right direction?

I appreciate any help i can get on this.

P.S. i am an Access Rookie so be explicit please.:rolleyes:
 
Sorry: The fields i need to retrieve for the training pending are ....

SAP
LastName
FirstName
Department
Onsite
Offsite

Thanks
 
I think that you could use the unmatched query wizard to find all saps in the employee but not in the training table, is that what you want.?

Brian
 
It is close :) I have tried the unmatched query wizard and while it will return the unmatched SAP data i cannot control the course title. So my worry is once all personnel in the db have taken some kind of course there will no longer be any unmatched SAP so i still wont be able to have a roster of personnel who still need to take Lock out Tag out training for example.
 
Ah!
Without a list of all available courses that is not possible.
With a list of all available courses you could then find which sap have done which and then which haven't done a particular course.

It is Sunday and brain is struggling but think that's correct.

Brian
 
I have one table that has all the training course titles in a table simply called TrainingCourseList the Employee Training table uses a drop down pulling from this table for the titles to ensure continuity. If there is a way that it will allow me to do it that would be great.

Also i was thinking of a solution but not sure if it would work. In Macro

Line 1 - Run a make table query that makes table of all training with certain title
Line 2 - OutPutTo Find Duplicates query against the employees main
Line 3 - deleteObject to delete the just made table so each time the data is new

This macro assigned to a button on a pop up form that has the drop down box to choose training put into new table. Does this sound like a feasible process?
 
Last edited:
The idea above seems to work. The Db wont have more than 1,000 employees in it at one time so it should not become sluggish even with it being split. Thanks for the help Brian.
 
I'm not fond of macros and they are not needed here. I was thinking of 3 queries. In the very simple attachment run qryAllnondonetraining , yeah I know heavy naming but just to keep it self explanatory.

It may be possible with sub queries but I like simple as you can easily check individual steps.

Brian
 

Attachments

Users who are viewing this thread

Back
Top Bottom