I have a database where resources enter forecasted project work time for each month. I need a way to automatically calculate the available work hours for a given month.
I will then subtract the available work hours for the month from the forecast hours entered to come up with the non-forecasted hours.
Available work hours = number of weekdays in the month times 8.
forecast hours = hours entered by resources each month.
non-forecasted hours = Available work hours - Forecasted Hours
For example, if a resource forecasts 100 hours in February, there would be a total of 60 hours of non-forecasted time.
Here are the tables/fields in my database:
tblForecastHours
intResourceID = links to a table of resources
dtmForecastMonth = month being forecasted against
intMonth01 = hours forecasted to the current month
tblResources
intResourceID
strResourceFN
strResourceLN
I am not sure how to come up with the available work hours, any help would be appreciated,
Denae
I will then subtract the available work hours for the month from the forecast hours entered to come up with the non-forecasted hours.
Available work hours = number of weekdays in the month times 8.
forecast hours = hours entered by resources each month.
non-forecasted hours = Available work hours - Forecasted Hours
For example, if a resource forecasts 100 hours in February, there would be a total of 60 hours of non-forecasted time.
Here are the tables/fields in my database:
tblForecastHours
intResourceID = links to a table of resources
dtmForecastMonth = month being forecasted against
intMonth01 = hours forecasted to the current month
tblResources
intResourceID
strResourceFN
strResourceLN
I am not sure how to come up with the available work hours, any help would be appreciated,
Denae