2 Attachment(s)
Monthly average Query/or report
At my work we have a "sign in sheet" table...
I have created a query that calculates daily time, but when I try to create a report that shows weekly average hours, It gives me the daily average for each week, I assume I need to change the "DailyTime" column in my report to calculate weekly time, but I don't know how to do that.
Can anyone help me?
I have attached screen shots of the query, and the table that the query comes from...
The daily time code I am using in my query is
Daily Time: Round(IIf(IsNull([Time Out Lunch]),DateDiff("n",[Time In AM],[Time Out PM]),DateDiff("n",[Time In AM],[Time Out Lunch])+DateDiff("n",[Time In Lunch],[Time Out PM]))/60,2)