I have the following tables with unique IDs and Column Values corresponding to the table
Employee table: EmployeeID, EmployeeName
Task table: TaskID, Task
Subtask table: SubtaskID, Subtask
Training table: TrainingID, EmployeeID, TaskID, SubtaskID, TrainingDate
The training date could be used as the marker of whether the employee was trained, or it could be a separate field associated with the training. I prefer the latter.
For the life of me, I can't figure out how to relate, lookup, and query the tables to get a form that has
Lookup employee by EmployeeID
Display a subform that shows employees current training
Allows me to select Task, then subtask, to add training.
I can get pieces, but am having a whole lot of trouble making it all work together. Some suggest lookups in the tables, but don't show how to filter it in a table when referencing the tasks and subtasks in a training table.. Others suggest combo boxes, but don't show how to quickly add 40 tasks and subtasks to an employee's training on one form, as a subform would do.