Calculate Time and exclude weekends

hmirones

New member
Local time
Today, 05:44
Joined
Feb 26, 2018
Messages
2
Hello, I'm new to access and I have been working on a query in which I have to Dates one is Open time and the other Closed Time and we want to calculate the time in hours the ticket was took to be completed but we do not want weekends to impact the amount of hours.

Thanks for the help
 
in your base query, make a field to show Day Of Week.
Dow: format([workDate],"ddd")

then you can exclude these dates in the 2nd query
select * from qsWork where Dow<>'Sat' and Dow<>'Sun'
 

Users who are viewing this thread

Back
Top Bottom