L
Lostguy
After many posts and much, much help, the employee and event tracking
database I/we have been working on seemingly forever is almost done.
The goal is for it to track every employee's personal data as well as
every event/task that that employee does. I have one more hurdle left
which is the "guts" of this project:
Here's the setup (I am leaving out some of the supporting lookup
tables):
40 employees (30 civilian, 10 military) divided among 4 sections.
tblEmployee: EmployeeIDpk(1), LName
(Data for each employee)
tblEvent: EventIDpk (join), Event, EventPeriodicity, ApplicableTo,
CivMilBoth
(Data for each event: Flu Shot, 365 (days), all (sections), Both
(Civilian, Military, or Both))
tblEventWhen: EventWhenIDpk (join), EventIDfk (join), EventDate,
EventRemarks
(When each event took place)
tblEmpEvent: EventWhenIDfk (join), EmployeeIDfk (many), EmpEventIDpk
(Which employees did which events)
All relationships are ref int with Join Type 1 (With the 1's and
many's shown above), except for the "joins" shown above that I had to
uncheck ref integrity because I kept getting the error that I could
not delete a record because it had a related record....??
The frmEventEntry (based on tblEventWhen) with fields EventDate,
EventIDfk (combo), and EventRemarks
The continuous subform is from tblEmpEVent with EmployeeIDfk (combo)
I don't know how to setup the following:
For each employee, create a report showing which Events have no
associated EventDate. Do not list any Events that have been deemed not
applicable to that particular employee (based on the ApplicableTo) and
CivMilBoth fields.
??
VR/Lost
database I/we have been working on seemingly forever is almost done.
The goal is for it to track every employee's personal data as well as
every event/task that that employee does. I have one more hurdle left
which is the "guts" of this project:
Here's the setup (I am leaving out some of the supporting lookup
tables):
40 employees (30 civilian, 10 military) divided among 4 sections.
tblEmployee: EmployeeIDpk(1), LName
(Data for each employee)
tblEvent: EventIDpk (join), Event, EventPeriodicity, ApplicableTo,
CivMilBoth
(Data for each event: Flu Shot, 365 (days), all (sections), Both
(Civilian, Military, or Both))
tblEventWhen: EventWhenIDpk (join), EventIDfk (join), EventDate,
EventRemarks
(When each event took place)
tblEmpEvent: EventWhenIDfk (join), EmployeeIDfk (many), EmpEventIDpk
(Which employees did which events)
All relationships are ref int with Join Type 1 (With the 1's and
many's shown above), except for the "joins" shown above that I had to
uncheck ref integrity because I kept getting the error that I could
not delete a record because it had a related record....??
The frmEventEntry (based on tblEventWhen) with fields EventDate,
EventIDfk (combo), and EventRemarks
The continuous subform is from tblEmpEVent with EmployeeIDfk (combo)
I don't know how to setup the following:
For each employee, create a report showing which Events have no
associated EventDate. Do not list any Events that have been deemed not
applicable to that particular employee (based on the ApplicableTo) and
CivMilBoth fields.
??
VR/Lost