J
JudyB
I currently have a database that adds all service time an employee
works in each job classification. I need to modify the database to also
include any service time an employee may work in a job title that is above
his/her current job title in the line of progression (LOP). For example:
Joe Brown is currently working as a Winder Technician (LOP = 1.1.04) where
he has 52 weeks service. Prior to that position, he had worked as a Dry End
Technician (LOP = 1.1.05) which is a higher job classification and where he
had 25 weeks service. What do I need to do to get the program to
automatically add the 25 weeks served in the higher job classification to the
employee’s current job classification of 52 weeks service to give me a total
time served of 77 weeks?
I was given the following code, but have been unsuccessful in getting it
to work:
=DSum("[WeeksService]","Service Record Query","[EmployeeID] = " &
[EmployeeID] & " AND Left(LOP, 3) = '" & Left(Current_LOP,3) & "' AND
Right(LOP, 2) <= '" & Right(Current_LOP, 2) & "'")
LOP Coding (1.1.04) - The first digit represents the Department, the second
digit represents the area, and the last two digits represent the job.
Therefore, the first and second digits of the LOP will need to be equal and
the last two digits must be equal or greater.
When I type the code in the Control Source field and then clicked out
of the field, the system automatically changes the text back to the original
code.
This is my first database, so I am very green. Can anyone provide
additional help? Thank you so much!
works in each job classification. I need to modify the database to also
include any service time an employee may work in a job title that is above
his/her current job title in the line of progression (LOP). For example:
Joe Brown is currently working as a Winder Technician (LOP = 1.1.04) where
he has 52 weeks service. Prior to that position, he had worked as a Dry End
Technician (LOP = 1.1.05) which is a higher job classification and where he
had 25 weeks service. What do I need to do to get the program to
automatically add the 25 weeks served in the higher job classification to the
employee’s current job classification of 52 weeks service to give me a total
time served of 77 weeks?
I was given the following code, but have been unsuccessful in getting it
to work:
=DSum("[WeeksService]","Service Record Query","[EmployeeID] = " &
[EmployeeID] & " AND Left(LOP, 3) = '" & Left(Current_LOP,3) & "' AND
Right(LOP, 2) <= '" & Right(Current_LOP, 2) & "'")
LOP Coding (1.1.04) - The first digit represents the Department, the second
digit represents the area, and the last two digits represent the job.
Therefore, the first and second digits of the LOP will need to be equal and
the last two digits must be equal or greater.
When I type the code in the Control Source field and then clicked out
of the field, the system automatically changes the text back to the original
code.
This is my first database, so I am very green. Can anyone provide
additional help? Thank you so much!