Hi All...im trying to setup a query in ms access but its realy starting to bug me...ill try and explain as good as possible...
i have 3 fields, 'Name', 'time_logged_in' and 'lines_per_day'
i need to get the number of lines people do per minute...so this is my query
1 and a half hours would be 1.5
SELECT Name, ROUND(Sum(time_logged_in *24),2) AS Time_Logged_in, Sum(lines_per_day) AS Total_Lines_Picked, SUM((time_logged_in / 60) * lines_per_day) as lines_Per_minute
FROM Sheet1
GROUP BY Name
when i run the query 'time logged in' is perfect...its the 'lines_per_minute' thats wrong......
I dont know how fare im off, but i hope anyone can help me
Kind Regards
Ronan
i have 3 fields, 'Name', 'time_logged_in' and 'lines_per_day'
i need to get the number of lines people do per minute...so this is my query
1 and a half hours would be 1.5
SELECT Name, ROUND(Sum(time_logged_in *24),2) AS Time_Logged_in, Sum(lines_per_day) AS Total_Lines_Picked, SUM((time_logged_in / 60) * lines_per_day) as lines_Per_minute
FROM Sheet1
GROUP BY Name
when i run the query 'time logged in' is perfect...its the 'lines_per_minute' thats wrong......
I dont know how fare im off, but i hope anyone can help me
Kind Regards
Ronan