Forum Discussion
richrich123
3 years agoHelper III
Dax Network Days
Hello, Could someone point out where I have gone wrong here. I have 'days since last update' which gives me actual days between A and B but I want to also have working days to exlude weekends. I ...
- 3 years ago
The Networkdays() counts both the start and end days, if they are working days and the calculation is correct. If you want to exclude the start date , use start date+1 or if you want to exclude today, use today()-1 as the end date
Hope this helps
Padycosmos
3 years agoSolution Sage
The Networkdays() counts both the start and end days, if they are working days and the calculation is correct. If you want to exclude the start date , use start date+1 or if you want to exclude today, use today()-1 as the end date
Hope this helps
richrich123
3 years agoHelper III
Padycosmos fantastic, that has sorted it, I had realised it was including the first day. Thanks!