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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Daretoexplore
Frequent Visitor

Tricky calculation

Hi all

 

I have a couple of tricky calculations and wondering if you could assist please.

 

My data is roughly as follows:

ID.          Start_Date(UK)         Step

1.           21/6/24.                   Enter store 

1.           22/6/24.                   Get Trolley

1.           25/6/24.                   Enter checkout 

2.           20/6/24.                   Enter store 

2.           24/6/24.                   Get Trolley

2.           28/6/24.                   Enter checkout

 

I'm looking for either a calculated column or DAX measure to calculate the following:

Days between 'Get Trolley' and 'Enter checkout' for each ID

Days between 'Enter store and Enter checkout' for each ID

 

 

Hope that makes sense!

Thank you!

1 ACCEPTED SOLUTION
ryan_mayu
Super User
Super User

@Daretoexplore 

pls try to create measure

 

Measure = DATEDIFF(maxx(FILTER('Table','Table'[Step]="Enter store"),'Table'[Start_Date]),maxx(FILTER('Table','Table'[Step]="Enter checkout"),'Table'[Start_Date]),day)
 
Measure 2 = DATEDIFF(maxx(FILTER('Table','Table'[Step]="Get Trolley"),'Table'[Start_Date]),maxx(FILTER('Table','Table'[Step]="Enter checkout"),'Table'[Start_Date]),day)
 
11.PNG
 
 




Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

3 REPLIES 3
ryan_mayu
Super User
Super User

@Daretoexplore 

pls try to create measure

 

Measure = DATEDIFF(maxx(FILTER('Table','Table'[Step]="Enter store"),'Table'[Start_Date]),maxx(FILTER('Table','Table'[Step]="Enter checkout"),'Table'[Start_Date]),day)
 
Measure 2 = DATEDIFF(maxx(FILTER('Table','Table'[Step]="Get Trolley"),'Table'[Start_Date]),maxx(FILTER('Table','Table'[Step]="Enter checkout"),'Table'[Start_Date]),day)
 
11.PNG
 
 




Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




That is amazing!

 

Thank you so much...kudos given.

you are welcome





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

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