Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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
Solved! Go to Solution.
@EVIJ , you can have new column like
diff =
dateduff(maxx(filter(table,[Date]<earlier([Date])),[Date]),[Date],day)
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.
you can try this
Column =
VAR _max=MAXX(FILTER('Table','Table'[Column1]<EARLIER('Table'[Column1])),'Table'[Column1])
return DATEDIFF(_max,'Table'[Column1],DAY)
Proud to be a Super User!
Thank you very much!! It works 🙂
Thank you very much!! It works!
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.