Tracking Employee Availability

N

norma59

Hi,

I have been trying to figure this out myself but just can't figure out the best way to track employee availability. Employees dictate their schedule so I need to capture daily availability along with a start time and end time for each work day they can work. Any suggestions on the best way to do this?

I have a feeling this is real simple but I just can't think it through right.



Thanks
 
D

Duane Hookom

You should be able to store availability in a table like;
tblEmpAvail
============
eavEAvID autonumber primary key
eavEmpID foreign key to tblEmployees.empEmpID
eavDate date available
eavFromTime
eavToTime


--
Duane Hookom
MS Access MVP


norma59 said:
Hi,

I have been trying to figure this out myself but just can't figure out the
best way to track employee availability. Employees dictate their schedule
so I need to capture daily availability along with a start time and end time
for each work day they can work. Any suggestions on the best way to do
this?
 
N

norma59

That was the direction I was going but am confused over how to capture the availability date. I wanted to use a list box in the subform to pick the day of the week as text (Monday,Tuesday, etc.). How would I do this if the field is Date/Time? I want to be able to query this information to schedule these employees by entering a schedule start date and end date. Thanks!
 
D

Duane Hookom

It wasn't clear that you were looking for values like Monday or Tuesday. You
might want to look at the Recurring.mdb found at
http://www.rogersaccesslibrary.com/OtherLibraries.asp#Hookom,Duane. This
helps build recurring schedules.

If that doesn't work, then come back with better specifications.

--
Duane Hookom
MS Access MVP


norma59 said:
That was the direction I was going but am confused over how to capture the
availability date. I wanted to use a list box in the subform to pick the
day of the week as text (Monday,Tuesday, etc.). How would I do this if the
field is Date/Time? I want to be able to query this information to schedule
these employees by entering a schedule start date and end date. Thanks!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top