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

How to calculate the difference between rows instead of between columns

Hi,

 

I would like to calculate the datedifference between rows, and use a calculated column for this. Is this possible in Power BI?

 

For example:

row 1: 4-2-2020

row 2: 8-2-2020

row 3: 15-2-2020

etc.

 

How do I calculate the difference in days between 4-2-2020 and 8-2-2020, between 8-2-2020 and 15-2-2020?

Thank you.

 

Kind regards, Ellen

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@EVIJ , you can have new column like

diff =
dateduff(maxx(filter(table,[Date]<earlier([Date])),[Date]),[Date],day)

View solution in original post

5 REPLIES 5
v-diye-msft
Community Support
Community Support

Hi @EVIJ 

 

If the above posts help, please kindly mark it as a answer to help others find it more quickly. thanks!

If not, please kindly elaborate more.

 

Community Support Team _ Dina Ye
If this post helps, then please consider Accept it as the solution to help the other members find it more
quickly.
ryan_mayu
Super User
Super User

@EVIJ 

you can try this

 

Column = 
VAR _max=MAXX(FILTER('Table','Table'[Column1]<EARLIER('Table'[Column1])),'Table'[Column1])

return DATEDIFF(_max,'Table'[Column1],DAY)

 

1.PNG





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

Proud to be a Super User!




Thank you very much!! It works 🙂

amitchandak
Super User
Super User

@EVIJ , you can have new column like

diff =
dateduff(maxx(filter(table,[Date]<earlier([Date])),[Date]),[Date],day)

Thank you very much!! It works!

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.