Forum Discussion
jimbob2285
Advocate IV
3 years agoDAX Count working days between two dates
Hi I've come across this DAX code to count the working days between two dates, that uses my date table to define if a day is a working day or not Days Overdue = CALCULATE( COUNTRO...
- Anonymous3 years ago
can you use the NETWORKDAYS function ?
Working Days Test =var _StartDate= 2023-07-28var _EndDate = 2023-07-25returnNETWORKDAYS(_EndDate,_StartDate,1)
Anonymous
3 years agoNot applicable
what are you using for a date dimension table currently ?
jimbob2285
Advocate IV
3 years agoI've built my own date table in SQL