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
jay_patel
Helper IV
Helper IV

How to Exclude All sundays and 2nd or 4th Saturdays for getting total working days for every month

Hello Community

 

Here I am looking for dax which can exclude all sunday's and only 2nd & 4th satuday, In the mentioned attachment I added a customer column like (if(date(date)="Saturday"|| "Sunday",0,1) but obviously it excludes every saturday and Sunday.

 

 

Thanks in advanceMicrosoftTeams-image.png

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@jay_patel , Try new columns like these in you date table

 

min week start of month = minx(filter('Date',[Month Year] =earlier([Month Year])),[Week Start date])
week of month = datediff([min week start of month],[date],Week)+1
or
week of month = quotient(datediff([min week start of month],[date],day),7)+1

 

work day = if(WEEKDAY([Date],2)=7 ||  [week of month] in {2,4}, 0,1)

View solution in original post

1 REPLY 1
amitchandak
Super User
Super User

@jay_patel , Try new columns like these in you date table

 

min week start of month = minx(filter('Date',[Month Year] =earlier([Month Year])),[Week Start date])
week of month = datediff([min week start of month],[date],Week)+1
or
week of month = quotient(datediff([min week start of month],[date],day),7)+1

 

work day = if(WEEKDAY([Date],2)=7 ||  [week of month] in {2,4}, 0,1)

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.