J
jdbit2byte
I am trying to make a schedule form. The customer wants the top of the form
to have monday-friday (as columns). These columns will display the work
scheduled for each technician and these columns need to be matched with the
current week.
The technician's names will list down the left side of the form (as rows).
I am planning on having a seperate edit and add form.
I have an existing Tech table with all the employees and their info:
tbl_Tech
TechID
TechFName
TechLName
TechType
etc....
So far I think it would be best to make a schedule table. Along the lines of:
tbl_Schedule
TechID
ScheduledDate
JobNum 'Number used by company to reference jobs
JobName 'Customer Name
JobLocation 'Site address
StartTime 'Time techs will meet on given day to go to work
Then (and I'm still trying to plan it out) the form will detect all the
dates in the current week and populate the form based on what entries are in
the table for week. This is where I get lost because I don't know how to
make a whole week match up with a table of dates. Also the technicians need
to be grouped on the schedule depending on their technician type. So the
left side of the form needs to display the techs in a predetermined order and
place.
I am familiar with Select Queries mainly. Is there another type of query
that would be better? I am also up to any suggestions on the whole setup of
this form.
Thanks,
Justin
to have monday-friday (as columns). These columns will display the work
scheduled for each technician and these columns need to be matched with the
current week.
The technician's names will list down the left side of the form (as rows).
I am planning on having a seperate edit and add form.
I have an existing Tech table with all the employees and their info:
tbl_Tech
TechID
TechFName
TechLName
TechType
etc....
So far I think it would be best to make a schedule table. Along the lines of:
tbl_Schedule
TechID
ScheduledDate
JobNum 'Number used by company to reference jobs
JobName 'Customer Name
JobLocation 'Site address
StartTime 'Time techs will meet on given day to go to work
Then (and I'm still trying to plan it out) the form will detect all the
dates in the current week and populate the form based on what entries are in
the table for week. This is where I get lost because I don't know how to
make a whole week match up with a table of dates. Also the technicians need
to be grouped on the schedule depending on their technician type. So the
left side of the form needs to display the techs in a predetermined order and
place.
I am familiar with Select Queries mainly. Is there another type of query
that would be better? I am also up to any suggestions on the whole setup of
this form.
Thanks,
Justin