Forum Discussion
Likhitha
Helper IV
6 years agoDoubt regarding about calculating difference between dates
Hello All, I'm having a status column and date column.I need to calculate datediff between preceding dates.How to do that?
Ashish_Mathur
Super User
6 years agoHi,
Try this calculated column formula
=[Date]-CALCULATE(MAX(Data[Date]),FILTER(Data,Data[Date]<EARLIER(Data[Date])))
Hope this helps.