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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

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
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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