Link to home
Start Free TrialLog in
Avatar of jithin v
jithin v

asked on

to create timesheet for a project from timesheet of three employee

how to create the time tracking for a project from timesheet of employees.i need to create a timesheet for a project from the timesheet of employers
Avatar of PatHartman
PatHartman
Flag of United States of America image

Assuming that each person logs the project along with the time per day, use a query to summarize by project.

Select ProjectID, Sum(DailyHours) As ProjectHours
From tblTimeRecords
Group By ProjectID;

However, If you have kept DailyHours in a datetime data type. you should probably convert it to minutes first and sum the minutes and then convert back to hours.  Your result will be in hous.fraction rather than hours.minutes.

Select ProjectID, Sum(cDbl(Format(DailyHours, "nn"))) / 60  As ProjectHours
From tblTimeRecords
Group By ProjectID;
"Time Sheet", ...can mean many different things to different people...
Different Time Sheets

You may have to post a sample Employee time sheet, ...then post an example of the "exact" output you are expecting from this data.

JeffCoachman
This question needs an answer!
Become an EE member today
7 DAY FREE TRIAL
Members can start a 7-Day Free trial then enjoy unlimited access to the platform.
View membership options
or
Learn why we charge membership fees
We get it - no one likes a content blocker. Take one extra minute and find out why we block content.