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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Killingworth
Regular Visitor

Working Days

I have two tables

 

1. With raw data of interactions broken down by date

 

2. Date table with all dates of the year with an indicator if the day is a working day or not.

 

I have a measure which gives me the number of working days in each month but how do I get the number of working days worked to the current date

 

i.e this month to date they have been 9 workings days

1 ACCEPTED SOLUTION

@Killingworth 

 

please try this

THISMONTHWORKDAY = 
CALCULATE(COUNTROWS('DATE'),FILTER('DATE','DATE'[Date]<=TODAY()&&'DATE'[WORKDAY2]="WEEKDAY"))

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

5 REPLIES 5
ryan_mayu
Super User
Super User

@Killingworth 

 

It will be better that you share your measure and the sample data.

 

1.PNG

THISMONTHWORKDAY = 
VAR mth=MONTH(TODAY())
VAR yr=YEAR(today())
RETURN CALCULATE(COUNTROWS('DATE'),FILTER('DATE',YEAR('DATE'[Date])=yr&& MONTH('DATE'[Date])=mth&&'DATE'[Date]<=TODAY()&&'DATE'[WORKDAY2]="WEEKDAY"))

Since my local time is about 1 am, my workday is 10 for this month.

2.PNG





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




That gives me the number of working days complete in the current month but if I filter the data for previous months it doesn't give the amount of working days complete in the filtered month ?

@Killingworth 

 

please try this

THISMONTHWORKDAY = 
CALCULATE(COUNTROWS('DATE'),FILTER('DATE','DATE'[Date]<=TODAY()&&'DATE'[WORKDAY2]="WEEKDAY"))

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




That worked thanks for your help

amitchandak
Super User
Super User

@Killingworth , Refer this how to get working dates between 2 dates. Make one of the date as today.

 

Refer 2nd page

https://www.dropbox.com/s/y47ah38sr157l7t/Order_delivery_date_diff.pbix?dl=0

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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