Forum Discussion
ArchStanton
3 years agoPower Participant
Calculating Working Days between multiple events
Hi, I would like to calculate the Working Days only for a Case between Received and Resolved dates. This is easy if it was just that simple because occasionally a Case can be put on hold (deferred) ...
- 3 years ago
YukiK
3 years agoImpactful Individual
You can get working days like this:
CALCULATE(
COUNTROWS ( 'Date2' ),
DATESBETWEEN ( 'Date2'[Date], 'Cases'[Date Received], 'Cases'[Date Resolved] ),
'Date2'[Is Working Day?] = TRUE,
ALL ( Date2 )
)ArchStanton
3 years agoPower Participant
This isn't what I was after as I already have this code. The other respondent in this thread has nailed it so all good now.
Thanks for your input anyway!