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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

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 ) )

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

@kattlees

 

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

See the pic below

 

DayExcludingWeekEndsErr.png

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors