A query in my database computes the number of calendar days elapsed between two dates. The syntax is simply:
SELECT Main.[Date Received], Main.[Date Returned], [Date Returned]-[Date Received] AS [Review Time]
FROM Main;
I would like to change this query so that it counts only workdays -- not Saturdays or Sundays. I'd be grateful for any tips or examples.
Thanks.
JerSand
SELECT Main.[Date Received], Main.[Date Returned], [Date Returned]-[Date Received] AS [Review Time]
FROM Main;
I would like to change this query so that it counts only workdays -- not Saturdays or Sundays. I'd be grateful for any tips or examples.
Thanks.
JerSand