[TABLE="width: 500"]
<tbody>[TR]
[TD]EMP ID[/TD]
[TD]EMP Name
[/TD]
[TD]Date[/TD]
[TD]Job[/TD]
[TD]JOB #[/TD]
[/TR]
[TR]
[TD]1
[/TD]
[TD]John[/TD]
[TD]1/1/17[/TD]
[TD]Manager[/TD]
[TD]1[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]John[/TD]
[TD]1/2/17[/TD]
[TD]Manager[/TD]
[TD]1[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]John[/TD]
[TD]1/3/17[/TD]
[TD]Employee[/TD]
[TD]2[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]Mary[/TD]
[TD]1/1/17[/TD]
[TD]Employee[/TD]
[TD]2[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]Mary[/TD]
[TD]1/2/17[/TD]
[TD]Employee[/TD]
[TD]2[/TD]
[/TR]
[TR]
[TD]3[/TD]
[TD]Peter[/TD]
[TD]1/3/17[/TD]
[TD]Manager[/TD]
[TD]1[/TD]
[/TR]
[TR]
[TD]4[/TD]
[TD]Paul[/TD]
[TD]1/4/17[/TD]
[TD]Employee[/TD]
[TD]2[/TD]
[/TR]
</tbody>[/TABLE]
Hello all-
I am creating a converter for payroll files pulled from POS data. I need to write a VBA code that checks that the same employee is clocked in as the same job for the date range. So in this example Employee #1 John is the only employee in violation because during this period he has two unique jobs (Manager and Employee). I would like a msgbox to pop up stating that employee #1 John is in violation of the policy so the person entering data can fix the incorrect entry manually. Some employees will have only 1 row (just one day of working ilke Peter and Paul) some will have multiple (like Mary and John). The report pulls with both a numerical and string value for each employee and job type.
Appreciate any feedback!
<tbody>[TR]
[TD]EMP ID[/TD]
[TD]EMP Name
[/TD]
[TD]Date[/TD]
[TD]Job[/TD]
[TD]JOB #[/TD]
[/TR]
[TR]
[TD]1
[/TD]
[TD]John[/TD]
[TD]1/1/17[/TD]
[TD]Manager[/TD]
[TD]1[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]John[/TD]
[TD]1/2/17[/TD]
[TD]Manager[/TD]
[TD]1[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]John[/TD]
[TD]1/3/17[/TD]
[TD]Employee[/TD]
[TD]2[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]Mary[/TD]
[TD]1/1/17[/TD]
[TD]Employee[/TD]
[TD]2[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]Mary[/TD]
[TD]1/2/17[/TD]
[TD]Employee[/TD]
[TD]2[/TD]
[/TR]
[TR]
[TD]3[/TD]
[TD]Peter[/TD]
[TD]1/3/17[/TD]
[TD]Manager[/TD]
[TD]1[/TD]
[/TR]
[TR]
[TD]4[/TD]
[TD]Paul[/TD]
[TD]1/4/17[/TD]
[TD]Employee[/TD]
[TD]2[/TD]
[/TR]
</tbody>[/TABLE]
Hello all-
I am creating a converter for payroll files pulled from POS data. I need to write a VBA code that checks that the same employee is clocked in as the same job for the date range. So in this example Employee #1 John is the only employee in violation because during this period he has two unique jobs (Manager and Employee). I would like a msgbox to pop up stating that employee #1 John is in violation of the policy so the person entering data can fix the incorrect entry manually. Some employees will have only 1 row (just one day of working ilke Peter and Paul) some will have multiple (like Mary and John). The report pulls with both a numerical and string value for each employee and job type.
Appreciate any feedback!