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! Go to 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.
User | Count |
---|---|
15 | |
14 | |
8 | |
7 | |
4 |