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

Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more

Reply
rpinxt
Power Participant
Power Participant

Count time between rows

Probably not that difficult but still I am strugling.

Here is the issue:

rpinxt_0-1708612675127.png

I want to make a measure that shows me how many time each step took.

So second line would be 7:34 -/- 7:32 resulting in 2 minutes.

 

Etc.

 

6 REPLIES 6
rpinxt
Power Participant
Power Participant

Thanks @Greg_Deckler bit more difficult then I was expecting.

 

Tried it like this but no luck yet :

Time Spent =
VAR __Current = MAX('Table 1'[Time])
VAR __PreviousDate = MAXX(FILTER('Table 1','Table 1'[Time] < EARLIER(MAX('Table 1'[Time]),1)

VAR __Previous = MAXX(FILTER('Table 1','Table 1'[Time]=__PreviousDate),[Value])
RETURN
  __Current - __Previous
 
But it starts to go wrong in the EARLIER part....

@rpinxt Can you post your data as text?



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
Power BI Cookbook Third Edition (Color)

DAX is easy, CALCULATE makes DAX hard...

@Greg_Deckler  you mean like this?

 

DateNameTimeProcess
01-02-24ALHAJJX 07:32:47Sumtotal
01-02-24ALHAJJX 07:34:54Apply
01-02-24ALHAJJX10:32:36Pauze Uit
01-02-24ALHAJJX10:51:13Pauze Uit
01-02-24ALHAJJX11:24:17Apply
01-02-24ALHAJJX12:30:54Pauze In
01-02-24ALHAJJX13:05:07Pauze Uit
01-02-24ALHAJJX15:01:02Pauze In
01-02-24ALHAJJX15:19:09Pauze Uit
01-02-24ALHAJJX15:36:23Apply
01-02-24ALHAJJX15:57:11Stop

@rpinxt Perfect! Try this (PBIX is attached below signature)

 

Time Spent (Minutes) = 
    VAR __Current = [Time]
    VAR __Previous = MAXX(FILTER('Table 1','Table 1'[Time] < __Current),[Time])
    VAR __Result = IF( __Previous = BLANK(), 0, ( __Current - __Previous ) * 1. * 24 * 60)
RETURN
    __Result

 



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
Power BI Cookbook Third Edition (Color)

DAX is easy, CALCULATE makes DAX hard...

Thanks very much Greg.

First thought you made a measure but this is calculated column correct?

Works like a charm.

 

But I have a new concern now....

Out columns have a different order, I set that order in a table visual.

rpinxt_0-1708617547508.png

I tried changing the columns in the query editor but the original order remains in the table view in Power BI.

 

Is there another solution to change the order of the columns then change it in the source?

Greg_Deckler
Super User
Super User

@rpinxt See my article on Mean Time Between Failure (MTBF) which uses EARLIER: http://community.powerbi.com/t5/Community-Blog/Mean-Time-Between-Failure-MTBF-and-Power-BI/ba-p/3395....
The basic pattern is:
Column = 
  VAR __Current = [Value]
  VAR __PreviousDate = MAXX(FILTER('Table','Table'[Date] < EARLIER('Table'[Date])),[Date])

  VAR __Previous = MAXX(FILTER('Table',[Date]=__PreviousDate),[Value])
RETURN
  __Current - __Previous



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
Power BI Cookbook Third Edition (Color)

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
March PBI video - carousel

Power BI Monthly Update - March 2025

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

March2025 Carousel

Fabric Community Update - March 2025

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

Top Solution Authors