Ok, so here I need to create a chart that will show how many people have been employed over the last few months in the company. I would also like to be able to pull up the information in a report for how many were employed yesterday versus today.
I have tblEmployee with the EmpID as primary and also includes their FirstName, LastName, Orientation, EndPayroll.
I have tblPlacement with the EmpID linked to tblEmployee. This table also includes StartDate, EndDate, and Job#.
I need a chart that shows from Orientation to EndPayroll dates of all participants, just counting how many were employed each day.
I need a chart that shows from StartDate to EndDate for each participant as well, counting how many were working each day.
I also need a report that shows yesterdays employed and today's employed and calculates the difference or change. It will also calculate the total Orientations and EndPayrolls to show the total # of employees that have ever been with the company.
I think the main thing that I am having a hard time figuring out is how to calculate the totals based on a certain date. To tell it I want to include anyone who has an Orientation or StartDate before DATE and EndPayroll or EndDate after DATE ...
Help, please?