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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
Anonymous
Not applicable

I need to find how many days between Submitted date to the Working Days

Dear All ,

Requiremnet:i Have column as Submitted date i need to find Work day time for that Particular Month ,Suppose 16th Dec then it has to WD+9 as we have to exclude Sat,sun and Holidays,Please find the below Screenshots:

 

Capture1.JPGCapture2.JPG

 

Thanks In Advance.

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @ younis,

According to your description,  you have evaluated each date is a working day or a non-working day. Now you can use the below calculated column to calculate how many working days there are between the Submitted Date and the Workdays date:

Calworkdays.JPG

 

 

 

 
The specific formula as follow:

Calworkdays = CALCULATE( COUNTROWS('Calendar table'),

                             FILTER('Calendar table', 'Calendar table'[Workday/Not A workday]="Working Day"),

                           DATESBETWEEN('Calendar table'[Date],'Workday table'[Workdays],'Workday table'[Submitted Date])

                          )

 

Best Regards

Rena

View solution in original post

4 REPLIES 4
Anonymous
Not applicable

If It is 25th Dec then WD-5/WD+17  as i have to exclude  weekends and 25th Dec is Holiday

 

Anonymous
Not applicable

Hi @amitchandak  ,

 

In my Case i have already created a table and column which has only working Days,
now supposed submitted date is 6th Jan 2019 now i have to count Workday column till it matches with Submitted date..
Eg:

Submitted Date      Workdays
2019/01/06              2019/01/02   

                                 2019/01/03

                                 2019/01/06

now Ans should be like WD+3

 

Conclusion Count till You MATCH

 

Thanks In Advance.

 

Anonymous
Not applicable

Hi @ younis,

According to your description,  you have evaluated each date is a working day or a non-working day. Now you can use the below calculated column to calculate how many working days there are between the Submitted Date and the Workdays date:

Calworkdays.JPG

 

 

 

 
The specific formula as follow:

Calworkdays = CALCULATE( COUNTROWS('Calendar table'),

                             FILTER('Calendar table', 'Calendar table'[Workday/Not A workday]="Working Day"),

                           DATESBETWEEN('Calendar table'[Date],'Workday table'[Workdays],'Workday table'[Submitted Date])

                          )

 

Best Regards

Rena

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors