So here goes:
I work at a place that has several different locations and they would like to have an automated scheduling feature. My instincts tell me this should be possible, but I'm having a hard time putting it together in my head. My approach is this:
I have a table for work locations, with days open/closed and opening/closing times, and positions that need to be filled
I have a table for employees, with days available for work
I have a schedule table that will need to be autopopulated using the two previous tables to create entries for each date in the range for each position that needs to be filled, without duplicating employees in different positions.
I know this is pretty vague, but I'm kind of looking for a general idea of where to start and we can get more specific from there. My first thought is some sort of loop that goes through each date in the range, then each position on the first table and fills it with an employee that is not already assigned a spot on that date.
It's been a year or more since I've done any Access programming, so any help would be appreciated.