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
NewbieJono
Post Patron
Post Patron

Working day week number

Hello i want to display 1st working day of the week as 1, 2nd as 2 etc. i

 

However I wish to exclude bank holidays and weekends.

 

For example on a week where there is a bank holiday on a Monday, Tuesday would show as a 1, wendesday as a 2 etc.

 

have a date table with weekday and bank holiday, weekend markers.

 

Capture.PNG

 

 

 

 

1 ACCEPTED SOLUTION
Greg_Deckler
Super User
Super User

@NewbieJono So that would be something like below. See PBIX attached below signature.

Weekday Column = 
    VAR __Date = [Date]
    VAR __WeekNum = WEEKNUM(__Date,2)
    VAR __Table = 
        FILTER(
            ADDCOLUMNS( EXCEPT(CALENDAR( __Date - 7, __Date + 7), 'Holidays'), "__WeekNum", WEEKNUM([Date],2) ),
            [__WeekNum] = __WeekNum && [Date] <= __Date
        )
    VAR __Result = COUNTROWS(__Table)
RETURN
    __Result

 

 


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

1 REPLY 1
Greg_Deckler
Super User
Super User

@NewbieJono So that would be something like below. See PBIX attached below signature.

Weekday Column = 
    VAR __Date = [Date]
    VAR __WeekNum = WEEKNUM(__Date,2)
    VAR __Table = 
        FILTER(
            ADDCOLUMNS( EXCEPT(CALENDAR( __Date - 7, __Date + 7), 'Holidays'), "__WeekNum", WEEKNUM([Date],2) ),
            [__WeekNum] = __WeekNum && [Date] <= __Date
        )
    VAR __Result = COUNTROWS(__Table)
RETURN
    __Result

 

 


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

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.