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
atacuboy
Frequent Visitor

Return Previous Date or Calculate Difference from Previous Date in Earlier Row

Hello Everyone,

 

I'm trying to get the difference between the date at the current row and the date from a previous row, similar to the table below. 

Would any of you know how to create the column in red font below?

 

DatePrevious DateDifference
June 18, 2020--
November 15, 2020June 18, 2020150
March 2, 2021November 18, 2020107
1 ACCEPTED SOLUTION
Jihwan_Kim
Super User
Super User

Hi, @atacuboy 

If you are looking for creating a column, try something like below.

 

Picture5.png

 

 

previous date column =
CALCULATE (
MAX ( 'Table'[Date] ),
FILTER ( 'Table', 'Table'[Date] < EARLIER ( 'Table'[Date] ) )
)

 

Hi, My name is Jihwan Kim.

If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.

Linkedin: https://www.linkedin.com/in/jihwankim1975/

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


View solution in original post

4 REPLIES 4
Jihwan_Kim
Super User
Super User

Hi, @atacuboy 

If you are looking for creating a column, try something like below.

 

Picture5.png

 

 

previous date column =
CALCULATE (
MAX ( 'Table'[Date] ),
FILTER ( 'Table', 'Table'[Date] < EARLIER ( 'Table'[Date] ) )
)

 

Hi, My name is Jihwan Kim.

If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.

Linkedin: https://www.linkedin.com/in/jihwankim1975/

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


Thank you so much!

amitchandak
Super User
Super User

@atacuboy , Create a new column like

datediff([Date], maxx(table, [Date] < earlier([Date]),[Date]), day)

Thank you also for replying!

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.