Hi,
I'm trying to calculate Duration for working days only, between two dates.
My formula displays the Duration calendar days.
IF End_Date AND Start_Date:
End_Date - Start_Date
I've set the output to "Duration" and "Work time" checkbox is ticked.
I found the solution in another thread. The formula will remove the weekend days.
WITH raw_days = days_between(start, finish) + 1 : WITH weeks = floor((raw_days + weekday(start)) / 7) : raw_days - weeks * 2
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.