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

The Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.

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
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

FebPBI_Carousel

Power BI Monthly Update - February 2025

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

Feb2025 NL Carousel

Fabric Community Update - February 2025

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