We assign employees (N=65) to Job Type (N=5) and Job Title (N=many) every six months.
Before we begin, we know the employees and the job titles.
There are two phases: assignments and distribution.
Assignment:
- I assign individual employees to individual job types and titles.
Distribution:
- Employees get sent a list of their job assignments for the work period.
We need to:
- Make sure that every employee has a job type and title.
- Make sure that every job title has an employee.
What is the best set up for this kind of task? Is it just one big table? is it two tables (employees, jobs)?
I FEEL like this is a job for linked records, but no matter how hard I try, I can't figure it out--I've been doing this on a spreadsheet but there's gotta be a better way (particularly because I have to do this twice per year).
-Scott