Has anyone found a way to exclude weekend day counts in a “day count” formula column?
I’m using this to subtract due date columnt from start date column but I don’t want it to count weekend days. I just want actual working/business days.
DAYS({Due date}, {Start date})
The Weeknum function will find the week number of the year - so for example, if we are discussing
December 1st, that is the 48th week. If the start date was November 1st, that would be the 44th week. I then minused the 2, ( which results in 4) meaning that I now have the number of weeks between the 2 days, and then multiplied it by 2, as there are 2 weekend days a week.
With the new “Workload” dashboard widget, it is very helpful to have a timeline column. The problem with timeline columns is they don’t work with formulas, as expressed in this post. Please work quickly to add this functionality.
We actually have another formula that was recently created to help simplify this, perhaps this can help @KS-GBX.
Instead of ROUND(DAYS({Due date},{Start date})-(2*(WEEKNUM({Due date})-WEEKNUM({Start date}))),1) - you can now use WORKDAYS({Date1},{Date}) - (Remember to put the most recent date first) - this will automatically deduct the weekend days from the sum.
Let us know if there is anything else that we can help you with
Can I skip weekends when calculating the number of days for a task?
As was mentioned multiple times in this topic you can use WORKDAYS({Date1},{Date}) to calculate number of days between 2 dates excluding weekends. Its much cleaner and faster way than formula we needed to use before.
So i guess answer to your question is you can
Hi Ben, the WORKDAYS formula is great. Also glad to find it works with the timeline column. I wonder though if there was a way to deduct holidays as well together with this formula.