Workdays between 2 dates

Just wondering if anyone has a formula for calculating the number of Workdays beween 2 dates? Including both those dates. If its relevant, the Start and End dates may be a weekend

Solved Solved
0 16 2,671
1 ACCEPTED SOLUTION

We have the WORKDAY() expression.

For convenience, assume another column โ€œtotal daysโ€ which is equal to:
TOTALHOURS( [end] - [start] ) / 24

Then get total work days with:

[total days]
-
(
  TOTALHOURS( WORKDAY( [start] , [total days] ) - [start] ) / 24
  -
  [total days]
)

Please test well.

View solution in original post

16 REPLIES 16
Top Labels in this Space