B
Bruce
I have a database to keep track of training time. It
contains an Employees table, a Training Session table (for
subject, instructor, hours, etc.), and an Enrollment table
as a junction table. There is a many-to-many relationship
between Employee and Session (each employee can attend
many sessions, each session can include many employees),
thus the junction table, which contains employee name and
date.
A report summarizes the information for each employee. It
is based on a parameter query that includes the three
tables mentioned above, and is grouped by employee. There
is a text box for Training Time (from the Training Session
table), with its running sum set to Over Group. This
works as intended to total the training time for each
employee.
However, some training is on-the-job (OJT), which counts
as one quarter of the the time recorded. Eight hours of
OJT = 2 hours of training. What I need to do is to add
regular (not OJT) training plus one quarter of OJT, and to
have a running sum on the report. How can I do this?
contains an Employees table, a Training Session table (for
subject, instructor, hours, etc.), and an Enrollment table
as a junction table. There is a many-to-many relationship
between Employee and Session (each employee can attend
many sessions, each session can include many employees),
thus the junction table, which contains employee name and
date.
A report summarizes the information for each employee. It
is based on a parameter query that includes the three
tables mentioned above, and is grouped by employee. There
is a text box for Training Time (from the Training Session
table), with its running sum set to Over Group. This
works as intended to total the training time for each
employee.
However, some training is on-the-job (OJT), which counts
as one quarter of the the time recorded. Eight hours of
OJT = 2 hours of training. What I need to do is to add
regular (not OJT) training plus one quarter of OJT, and to
have a running sum on the report. How can I do this?