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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
jak8282
Helper III
Helper III

Count working days excluding Bank holidays

Hi,

 

I have a Calendar table  and a complaints table.  I am wanting to work out the days between when workday is 1 and bank holiday is 0 - how can I do this - tried a few things but cant seem to get it to work

 

example

DateIs WorkdayBank Holiday
25/02/202410
26/02/202410
27/02/2024

0

 

1

 

I also have a complaints table

Date RaisedInitial Response
25/02/2024

28/02/2024

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@jak8282 , You can use networkdays, you can also pass holiday list as table to this function

networkdays([Start Date], [End Date], 1)

 

refer how to use calendar for holiday

Power BI - Business day with and without using DAX Function NETWORKDAYS: https://www.youtube.com/watch?v=Qs03ZZXXE_c
https://medium.com/@amitchandak/power-bi-dax-function-networkdays-5c8e4aca38c

View solution in original post

3 REPLIES 3
jak8282
Helper III
Helper III

Thanks @amitchandak that looks good - i managed to get it working by using

 

BusinessDaysCount = 
    VAR originalDate = 'Complaints'[Original Date of Complaint]
    VAR closedDate = 'Complaints'[Initial closed date]
    RETURN
    CALCULATE(
        COUNT('Calendar Date'[date]),
        FILTER(
            ALL('Calendar Date'),
            'Calendar Date'[date] >= originalDate &&
            'Calendar Date'[date] <= closedDate &&
            'Calendar Date'[Bank Holidays] = 0 &&
            'Calendar Date'[Is Weekday] = 1
        )
    )-1
DataNinja777
Super User
Super User

Hi @jak8282 ,

 

You can use Networkdays function like below:

DataNinja777_0-1715252668647.png

Best regards,

amitchandak
Super User
Super User

@jak8282 , You can use networkdays, you can also pass holiday list as table to this function

networkdays([Start Date], [End Date], 1)

 

refer how to use calendar for holiday

Power BI - Business day with and without using DAX Function NETWORKDAYS: https://www.youtube.com/watch?v=Qs03ZZXXE_c
https://medium.com/@amitchandak/power-bi-dax-function-networkdays-5c8e4aca38c

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

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