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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
niro53
Regular Visitor

Measure a work shift based on multiple datetime values

Hi community, 

I have been trying to create a formula using DAX that would calculate working shift hours based on "Index". The work shift starts when the first order is taken(Order Start) and ends when there's an interval of more than X hours between Order End and next Order Start or between Order Start and Last Order End, it doesn't really matter.

niro53_1-1678371445875.png

My last formula that I have created, which I will insert below, kind of worked but the problem is that it takes too long to load 10 000+ records.

 

 

VAR _orderDifference = DATEDIFF('Taxi Bolt'[Order DateTime Start], 'Taxi Bolt'[Order DateTime End],MINUTE)
VAR _lastDateTime = 
    CALCULATE(MAX( 'Taxi Bolt'[Order DateTime End] ),
        FILTER(
            'Taxi Bolt',
            DATEDIFF([Order DateTime End], EARLIER([Order DateTime End]), MINUTE) >= 0 &&
            'Taxi Bolt'[Index]=EARLIER([Index]) && 
            [Order DateTime End] <> EARLIER([Order DateTime End]
        ))
    )
    
VAR _betweenOrdersTime = DATEDIFF(_nextDateTime, 'Taxi Bolt'[Order DateTime Start],MINUTE)
VAR _total = _orderDifference + _betweenOrdersTime
return IF(_betweenOrdersTime > 120 , 0, _total )

 

 

Is anyone able to help me how to optimize this code or rewrite in the way that it will take faster to calculate and return the result?

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@niro53 , Try like

 

AR _orderDifference = DATEDIFF('Taxi Bolt'[Order DateTime Start], 'Taxi Bolt'[Order DateTime End],MINUTE)
VAR _lastDateTime =
CALCULATE(MAX( 'Taxi Bolt'[Order DateTime End] ),
FILTER(
'Taxi Bolt',
[Order DateTime End]< EARLIER([Order DateTime End])&&
'Taxi Bolt'[Index]=EARLIER([Index])
))
VAR _betweenOrdersTime = DATEDIFF(_nextDateTime, 'Taxi Bolt'[Order DateTime Start],MINUTE)
VAR _total = _orderDifference + _betweenOrdersTime
return IF(_betweenOrdersTime > 120 , 0, _total )

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

1 REPLY 1
amitchandak
Super User
Super User

@niro53 , Try like

 

AR _orderDifference = DATEDIFF('Taxi Bolt'[Order DateTime Start], 'Taxi Bolt'[Order DateTime End],MINUTE)
VAR _lastDateTime =
CALCULATE(MAX( 'Taxi Bolt'[Order DateTime End] ),
FILTER(
'Taxi Bolt',
[Order DateTime End]< EARLIER([Order DateTime End])&&
'Taxi Bolt'[Index]=EARLIER([Index])
))
VAR _betweenOrdersTime = DATEDIFF(_nextDateTime, 'Taxi Bolt'[Order DateTime Start],MINUTE)
VAR _total = _orderDifference + _betweenOrdersTime
return IF(_betweenOrdersTime > 120 , 0, _total )

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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