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
dgdgdg122db
Helper II
Helper II

Days between last and second last order date

Hi , I want to show the average days between the last order and the second last order in my report.

order noorder dateclient noDatediff
A1231/1/2020AAA1 
B1231/2/2020AAA1 
C1231/10/2020AAA1 
D1231/12/2020AAA12
    
    
order noorder dateclient noDatediff
A3211/1/2020BBB1 
B3211/1/2020BBB10

Capture.PNG

1 ACCEPTED SOLUTION
v-zhenbw-msft
Community Support
Community Support

Hi @dgdgdg122db ,

 

We can use a calculate column or a measure to meet your requirement.

 

1. The calculate column solution, we can create a column using the following formula.

 

Column = 
var last_date = CALCULATE(MAX('Table'[order date]),FILTER('Table','Table'[client no]=EARLIER('Table'[client no])))
var last_second = CALCULATE(MAX('Table'[order date]),FILTER('Table','Table'[client no]=EARLIER('Table'[client no])&&'Table'[order date]<last_date)) 
var dif_ = DATEDIFF(last_second,last_date,DAY)
return
IF(ISBLANK(dif_),0,dif_)

 

Days 1.jpg

 

2. The measure solution, you can refer the following formula.

 

Measure = 
var last_date = CALCULATE(MAX('Table'[order date]),FILTER(ALLSELECTED('Table'),'Table'[client no]=MAX('Table'[client no])))
var last_second = CALCULATE(MAX('Table'[order date]),FILTER(ALLSELECTED('Table'),'Table'[client no]=MAX('Table'[client no])&&'Table'[order date]<last_date)) 
var dif_ = DATEDIFF(last_second,last_date,DAY)
return
IF(ISBLANK(dif_),0,dif_)

 

Days 2.jpg

 

If it doesn’t meet your requirement, could you please show the exact expected result based on the table that you have shared?

BTW, pbix as attached.

 

Best regards,

 

Community Support Team _ zhenbw

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-zhenbw-msft
Community Support
Community Support

Hi @dgdgdg122db ,

 

We can use a calculate column or a measure to meet your requirement.

 

1. The calculate column solution, we can create a column using the following formula.

 

Column = 
var last_date = CALCULATE(MAX('Table'[order date]),FILTER('Table','Table'[client no]=EARLIER('Table'[client no])))
var last_second = CALCULATE(MAX('Table'[order date]),FILTER('Table','Table'[client no]=EARLIER('Table'[client no])&&'Table'[order date]<last_date)) 
var dif_ = DATEDIFF(last_second,last_date,DAY)
return
IF(ISBLANK(dif_),0,dif_)

 

Days 1.jpg

 

2. The measure solution, you can refer the following formula.

 

Measure = 
var last_date = CALCULATE(MAX('Table'[order date]),FILTER(ALLSELECTED('Table'),'Table'[client no]=MAX('Table'[client no])))
var last_second = CALCULATE(MAX('Table'[order date]),FILTER(ALLSELECTED('Table'),'Table'[client no]=MAX('Table'[client no])&&'Table'[order date]<last_date)) 
var dif_ = DATEDIFF(last_second,last_date,DAY)
return
IF(ISBLANK(dif_),0,dif_)

 

Days 2.jpg

 

If it doesn’t meet your requirement, could you please show the exact expected result based on the table that you have shared?

BTW, pbix as attached.

 

Best regards,

 

Community Support Team _ zhenbw

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

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.

Top Solution Authors