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

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
rpinxt
Solution Sage
Solution Sage

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
Solution Sage
Solution Sage

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!:
DAX For Humans

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!:
DAX For Humans

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
Community Champion
Community Champion

@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!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

Check out the February 2026 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.