G
Gaetanm via AccessMonster.com
I have a Query that totals work minutes and devides it by 60
to get the hours. It does not give me the two decimal places.
I have tried Round but it did not work. But please take into concideration
that I'm a newbie.
I have the column in the table set at long interger,fix, two decimal places
Here is the code I do Have :
SELECT time_total.EmployeeID, Sum(time_total.TotalHoursMinutes)\60 AS
SumOfTotalHoursMinutes
FROM time_total
GROUP BY time_total.EmployeeID;
Could you please help
Gaetanm
to get the hours. It does not give me the two decimal places.
I have tried Round but it did not work. But please take into concideration
that I'm a newbie.
I have the column in the table set at long interger,fix, two decimal places
Here is the code I do Have :
SELECT time_total.EmployeeID, Sum(time_total.TotalHoursMinutes)\60 AS
SumOfTotalHoursMinutes
FROM time_total
GROUP BY time_total.EmployeeID;
Could you please help
Gaetanm