Hi All,
I am trying to create a database to keep records of staff competencies i.e. a record of who is competent to perform tasks. I have a basic understanding of databases but have not done much development.
Here's what I have so far:
A table of staff details (Primary Key, Surname, First Name)
A table of tasks (Primary Key, Task Description)
A table of competency levels (Primary Key, Level Code, Level Description): For example basic, advanced, in training
A table called staff training records, with the columns: Staff Name (lookup from staff table), Task (lookup from task table), competency level (lookup from competency level table), Date assessed, Assessor (lookup from staff table), Comments (free text)
What I want to produce is a form for data input that allows me to select a member of staff and then lists all the tasks in the task table, with the competency level, date assessed, comments. I cannot work out how to produce such a form so that it will show ALL tasks even if I have not yet defined a competency level for that task for that member of staff. I want to use this form to populate the staff competency table for each member of staff and update as things change. Can anyone point me in the right direction?
When we have a new member of staff, I want their training record to be automatically populated with all the tasks in the task table but for the competency level to be blank by default.
Also, when I use a lookup table to select a member of staff, the drop down box contains the surname and first name. Once selected, I only see the surname. How can I show the full name of the member of staff on the form
Thanks