"Well, you certainly need a list of people as well, right!? you can't assign an
employee to a training course unless you know who the employee is and what her
trade, etc. are."
I have a table/form that are connected that allows for me to enter the
employee information. I have it set up so that everything is inputted through
the Form not the table. Any other user will not being seeing the table that
holds the employee information it will all be entered through the form that
contains the combo boxes.
To enter or update data you will need a form (reports are display-only). This
form will have combo boxes which will probably depend on data in the Employee
table (if the employee table exists, which is still unclear to me). If you'll
post the relevant fieldnames and relationships of your tables, we'll gladly
help you do so.
You very likely will want a Report at some point to print out who's been
assigned to which course, but that is a separate issue.
Okay as far as tables go. Here is what I have and what the tables contain.
There is:
1. Table "Employee Information" that has fields for Empl # (# field), Name
(text field), Project (text field), trade (text, combo box), position (text,
combo box), whether they are a contractor (yes/no field), whether it is a
change of position (yes/no field), If they were on a per diem break (#
field), if they were on LOA (# field), or if they are a re-hire (# field).
2. Table "List_of_trades" that only has one field that lists each of the
trades within the company. (This is used in conjunction with the "Employee
Information" table and the combo boxes")
3. Table "List_of_positions" that only has one field that lists each of the
positions. (This is used in conjunction with the "Employee Information" table
and the combo boxes")
4. Table "List_of_Courses" that only has one field that lists each of the
courses within the company. (This is not linked to anything as of right now)
I don't have any queries or reports set up. I only have those tables listed
above and two forms.
1. Form "Employee Information" that allows for the users to enter the
necessary information for each employee.
2. Form "HR Report" is the form that I created that links the "employee
information" TABLE and is the form that I am trying to contain only the
courses that are needed per trade/position.
I hope that I was able to clarify some of the needed information.