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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

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

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

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

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
July PBI25 Carousel

Power BI Monthly Update - July 2025

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

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

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