Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Networkdays

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 

 

 

1 ACCEPTED 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

View solution in original post

4 REPLIES 4
v-shex-msft
Community Support
Community Support

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

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.
daXtreme
Solution Sage
Solution Sage

1 * ([Completion Date] - [Creation Date])

Anonymous
Not applicable

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

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors