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
Anonymous
Not applicable

How to make a datediff to not considerer the sunday or some workaround

It's pretty straight foward, i need a datediff that doesnt considerer the times that pass on sunday. 

 

Vieiraguilherme_0-1606476037599.png

 

This will be applyed through the year, so, if an item got trigged in january, i need to know how many time has past disconsidering the sunday, because sunday inst a worked time. 

1 ACCEPTED SOLUTION
V-pazhen-msft
Community Support
Community Support

@Vieiraguilherme


I guess you wanted to ignore both Sunday and Saturday, that's the result shown in the chart. You cannot use datediff to filter on Sunday and Saturday, try to continue creating the following columns:

Diff days = COUNTX(FILTER(CALENDAR([Trigger],[Today]),WEEKDAY([Date],2)<>6 && WEEKDAY([Date],2)<>7),[Date])

Diff hours = [Diff days] * 24

datediff time.JPG


Paul Zheng _ Community Support Team
If this post helps, please accept it as the solution to help the other members find it faster.

View solution in original post

2 REPLIES 2
V-pazhen-msft
Community Support
Community Support

@Vieiraguilherme


I guess you wanted to ignore both Sunday and Saturday, that's the result shown in the chart. You cannot use datediff to filter on Sunday and Saturday, try to continue creating the following columns:

Diff days = COUNTX(FILTER(CALENDAR([Trigger],[Today]),WEEKDAY([Date],2)<>6 && WEEKDAY([Date],2)<>7),[Date])

Diff hours = [Diff days] * 24

datediff time.JPG


Paul Zheng _ Community Support Team
If this post helps, please accept it as the solution to help the other members find it faster.

amitchandak
Super User
Super User

@Anonymous , please find the attached file to check workday diff, that does not consider, Saturday ad Sunday. You can change the column in the date table to exclude only Sunday 

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.