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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
kattlees
Post Patron
Post Patron

Only count business days in date diff count

I need to run a report to see how long it takes something to be done.

 

I have 

StartDate and EndDate columns and can use a DateDiff(EndDate,StartDate) to get total days it took. 


What I would like to do is be able to NOT count weekend days in the count. So example would be

 

StartDate               EndDate            ActualTotalDays               TotalDaysWOWeekends

1/31/2018              2/2/2018                     2                                           2

2/2/2018                2/7/2018                    5                                            3  (not counting 2-3 & 2-4)

1 ACCEPTED SOLUTION

Does something go in [Value] area?  Here is my formula  and I get "The arguments in GenerateSeries function cannot be blank

 

TotalDaysWOWeekends =
VAR MyDates =
ADDCOLUMNS (
GENERATESERIES ( V_ACCT[visit_disch_date] + 1, V_ACCT[V_ACCT_HIM_Grouper.ipg_mrcomp_date] ),
"Day", WEEKDAY ( [Value], 2 )
)
RETURN
COUNTROWS ( FILTER ( mydates, [Day] <= 5 ) )

View solution in original post

7 REPLIES 7
Zubair_Muhammad
Community Champion
Community Champion

HI @kattlees

 

Try this Column

 

TotalDaysWOWeekends =
VAR MyDates =
    ADDCOLUMNS (
        GENERATESERIES ( TableName[StartDate] + 1, TableName[EndDate] ),
        "Day", WEEKDAY ( [Value], 2 )
    )
RETURN
    COUNTROWS ( FILTER ( mydates, [Day] <= 5 ) )

Regards
Zubair

Please try my custom visuals

Does something go in [Value] area?  Here is my formula  and I get "The arguments in GenerateSeries function cannot be blank

 

TotalDaysWOWeekends =
VAR MyDates =
ADDCOLUMNS (
GENERATESERIES ( V_ACCT[visit_disch_date] + 1, V_ACCT[V_ACCT_HIM_Grouper.ipg_mrcomp_date] ),
"Day", WEEKDAY ( [Value], 2 )
)
RETURN
COUNTROWS ( FILTER ( mydates, [Day] <= 5 ) )

Thank you so much! This worked perfectly.

@kattlees

 

Your formula seems correct

 

See my file attached here

 

You could share your file with me

 

VALUE is the column created by GenerateSeries function


Regards
Zubair

Please try my custom visuals

@kattlees

 

May be you have some BLANK dates


Regards
Zubair

Please try my custom visuals

@kattlees

 

Yes I get this error when I make any of the dates is BLANK

See the pic below

 

DayExcludingWeekEndsErr.png


Regards
Zubair

Please try my custom visuals

Helpful resources

Announcements
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.