Using winxp, access 2003.
I am tracking the dates that our employees carpool versus the dates that our state says are HPA days (high pollution).
If an employee happens to carpool the same day as one of the HPA days, we enter them into a prize drawing.
So the tables I have so far are:
tblEmployees
EmpID, FName, LName, Carpool_Date
tblHPADays
HPA_Date
Some employees only carpool a few days of the month, some do the whole month. So if I were to enter the carpool date into the tblEmployees table for someone who carpooled say 3 days that month, I would have to enter them 3 times with the different dates. Right?
But if someone carpooled every day of the month, say all of September, would I have to enter that employee with the dates 20 times, 1 entry for each day of the week? OR is there a better way to handle entering the carpool dates?
I am tracking the dates that our employees carpool versus the dates that our state says are HPA days (high pollution).
If an employee happens to carpool the same day as one of the HPA days, we enter them into a prize drawing.
So the tables I have so far are:
tblEmployees
EmpID, FName, LName, Carpool_Date
tblHPADays
HPA_Date
Some employees only carpool a few days of the month, some do the whole month. So if I were to enter the carpool date into the tblEmployees table for someone who carpooled say 3 days that month, I would have to enter them 3 times with the different dates. Right?
But if someone carpooled every day of the month, say all of September, would I have to enter that employee with the dates 20 times, 1 entry for each day of the week? OR is there a better way to handle entering the carpool dates?