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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
Smithy33
Regular Visitor

Ignoring Weekends

Hi - New PBI user here.....

Struggling with DAX code for a simple calculation to Count total days of the week (ignore Sat / Sun) 

Column for 'Days difference' between 2 dates, and for the days difference total to ignore saturday / sunday, returning values of 1 for days of the week and returning 0 for sat/sun entries?

 

Any assistance appreciated....

1 REPLY 1
Watsky
Solution Sage
Solution Sage

Hiya @Smithy33 ,

 

First welcome to the community!

 

Are you using a Date Table by any chance? If so in Power Query you could add a column to it by clicking on your data range field, going to Add Column at the top, click the Date section, hover your mouse over Day then select day of week. That will give you the numerical version of the weekday. If you are not using a Date Table then how are you determining the day of the week?

 

Watsky_0-1632261521723.png

I wasn't sure where you were pulling your date range from so for this example I used my date calendar and did the difference between the min and max of my calendar (9/21/2020 to 9/21/2021). Here's the formula I used:

 

Total Working Days = 
VAR MaxDate =
    MAX ( Calendar[Date Range] )
RETURN
    CALCULATE (
        COUNT ( Calendar[Date Range] ),
        DATEDIFF ( MaxDate, Calendar[Date Range], DAY ),
        AND ( Calendar[Day of Week] <> 0, Calendar[Day of Week] <> 6 )
    )

 

This resulted in a total of 261 working days.

 

Watsky_1-1632261912625.png


Did my answer(s) help you? Give it a kudos by clicking the Thumbs Up! ?
Did my post answer your question(s)? Mark my post as a solution. This will help others find the solution.


Did my answer(s) help you? Give it a kudos by clicking the Thumbs Up!
Did my post answer your question(s)? Mark my post as a solution. This will help others find the solution.

Proud to be a Super User!

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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

Top Solution Authors