Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Working day week number
04-14-2024
07:24 AM
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.
Solved! Go to Solution.
1 ACCEPTED SOLUTION
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-14-2024
08:59 AM
@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
Follow on LinkedIn
@ 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!: Power BI Cookbook Third Edition (Color)
DAX is easy, CALCULATE makes DAX hard...
1 REPLY 1
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-14-2024
08:59 AM
@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
Follow on LinkedIn
@ 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!: Power BI Cookbook Third Edition (Color)
DAX is easy, CALCULATE makes DAX hard...

Helpful resources
Announcements
Join us at the Microsoft Fabric Community Conference
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Power BI Monthly Update - February 2025
Check out the February 2025 Power BI update to learn about new features.

Recommendations
Subject | Author | Posted | |
---|---|---|---|
08-21-2024 07:28 AM | |||
07-19-2024 08:21 AM | |||
08-29-2024 08:31 AM | |||
03-13-2024 01:04 PM | |||
08-26-2024 11:08 AM |
Featured Topics
Top Solution Authors (Last Month)
User | Count |
---|---|
84 | |
81 | |
52 | |
37 | |
36 |
Top Kudoed Authors (Last Month)
User | Count |
---|---|
104 | |
85 | |
48 | |
43 | |
41 |