Forum Discussion
Network days with decimals
- 8 years ago
jcardea Hello
Please try the following calculated column
=COUNTROWS(FILTER(ADDCOLUMNS(CALENDAR(datestable[Enter],datestable[Modified]),"Day",WEEKDAY ([Date],1)),[Day]<>1&& [Day]<>7))+INT(datestable[Enter])+1-datestable[Enter]+datestable[Modified]-INT(datestable[Modified])-2
Please replace
- datestable by the name of your own table
- Enter column by start date
- Modified column by end date
The formula considers Sat and Sun as weekends
jcardea Hello
Please try the following calculated column
=COUNTROWS(FILTER(ADDCOLUMNS(CALENDAR(datestable[Enter],datestable[Modified]),"Day",WEEKDAY ([Date],1)),[Day]<>1&& [Day]<>7))+INT(datestable[Enter])+1-datestable[Enter]+datestable[Modified]-INT(datestable[Modified])-2
Please replace
- datestable by the name of your own table
- Enter column by start date
- Modified column by end date
The formula considers Sat and Sun as weekends
This function is awesome and works great for calculating turnaround times in my reports.
I'm tyring to generate another report where I would like turnaround time involved using this formual but I will also have cases where closed date has not yet been populated. Due to this I'm receiving an error. .
Is there any way to use this formula but filter for just for closed values? I have a column that identifies if a row has been closed or not.