Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi All,
I'd like to know if there is a way to calculate networkdays between two different days with time i.e.
[Creation Date] is 11/23/2021 3:30 pm
[Completion Date] is 12/06/2021 9:04 am
and the result Id like to have in format : 10.75 days
Could you advise/help or redirect to correct post about this topic ? Thanks. Maciej
Solved! Go to Solution.
// Something like this.
// Dates is a calendar that stores
// full days (with no time component).
|---------|=====A=====|==========|---------|==========|---------|==========|----B----|
// Legend: |====| -> non-working day, |---| -> working day
var DateTime1 = A
var Date1 = DATEVALUE( DateTime1 )
var DateTime2 = B
var Date2 = DATEVALUE( DateTime2 )
var FirstWorkingAfterOrOnA =
CALCULATE(
MIN( Dates[Date] ),
Dates[Date] >= Date1,
Dates[Day Type] = "working"
)
var LastWorkingBeforeOrOnB =
CALCULATE(
MAX( Dates[Date] ),
Dates[Date] <= Date2,
Dates[Day Type] = "working"
)
var StartDate =
MAX( DateTime1, FirstWorkingAfterOrOnA )
var EndDate =
MIN( DateTime2, LastWorkingBeforeOrOnB )
var NonworkingDays =
CALCULATE(
COUNTROWS( Dates ),
Dates[Date] >= StartDate,
Dates[Date] <= EndDate,
Dates[Day Type] = "non-working"
)
var NetworkingDays =
1 * (EndDate - StartDate) - NonworkingDays
var Result =
IF( NetworkingDays > 0,
NetWorkingdays
)
return
Result
Hi @Anonymous,
Can you please share a pbix or some dummy data that keep raw data structure with expected results? It should help us clarify your scenario and test to coding formula.
How to Get Your Question Answered Quickly
Regards,
Xiaoxin Sheng
1 * ([Completion Date] - [Creation Date])
This would not help . Networkdays are working days.
// Something like this.
// Dates is a calendar that stores
// full days (with no time component).
|---------|=====A=====|==========|---------|==========|---------|==========|----B----|
// Legend: |====| -> non-working day, |---| -> working day
var DateTime1 = A
var Date1 = DATEVALUE( DateTime1 )
var DateTime2 = B
var Date2 = DATEVALUE( DateTime2 )
var FirstWorkingAfterOrOnA =
CALCULATE(
MIN( Dates[Date] ),
Dates[Date] >= Date1,
Dates[Day Type] = "working"
)
var LastWorkingBeforeOrOnB =
CALCULATE(
MAX( Dates[Date] ),
Dates[Date] <= Date2,
Dates[Day Type] = "working"
)
var StartDate =
MAX( DateTime1, FirstWorkingAfterOrOnA )
var EndDate =
MIN( DateTime2, LastWorkingBeforeOrOnB )
var NonworkingDays =
CALCULATE(
COUNTROWS( Dates ),
Dates[Date] >= StartDate,
Dates[Date] <= EndDate,
Dates[Day Type] = "non-working"
)
var NetworkingDays =
1 * (EndDate - StartDate) - NonworkingDays
var Result =
IF( NetworkingDays > 0,
NetWorkingdays
)
return
Result
User | Count |
---|---|
25 | |
10 | |
7 | |
6 | |
6 |
User | Count |
---|---|
30 | |
11 | |
11 | |
9 | |
7 |