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
Hossam
Regular Visitor

Subtract between two row in the same column via Custom Column

Hello 

 

Id like to subtract these two values  to get the amount of minutes the order took from statues pending to statues in kitchen via a custom column

 

Hossam_0-1614011641459.png

 

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

@Hossam 

You can do it in dax with an easy calculate column then change the format to TIME.

 

Column = IF([Status after]="in_kitchen",[Created at] - CALCULATE(MAX('Table'[Created at]),FILTER('Table',[ID]=EARLIER([ID])-1)))
 

V-pazhen-msft_0-1614231880543.png

 

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

 

 

 

View solution in original post

3 REPLIES 3
V-pazhen-msft
Community Support
Community Support

@Hossam 

You can do it in dax with an easy calculate column then change the format to TIME.

 

Column = IF([Status after]="in_kitchen",[Created at] - CALCULATE(MAX('Table'[Created at]),FILTER('Table',[ID]=EARLIER([ID])-1)))
 

V-pazhen-msft_0-1614231880543.png

 

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

 

 

 

amitchandak
Super User
Super User

@Hossam , Create a new column like

 


new column =
var _min = maxx(filter(Table, [order_id] = earlier([order_id]), [created_date] <earlier([created_date]) && [Status_after] = "pending"),[created_date])
return
if([Status_after] = "in_kitchen", datediff(_min, [created_date], minute))

Hello, @amitchandak I want to do this for all of the rows no matter what the statues are because its a whole process of statues.

 

so basically I want to subtract the second row of the column created at with the cell above it

 

Think you Can help me?

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.