Forum Discussion
Anonymous
3 years agoNot applicable
Need help in calculating date difference in following
In this data I need to calculate date difference System.changed date. We are given with ID along with rev which is order of System.State change. Suppose we are having first ID 1049352 , for thi...
amitchandak
Super User
3 years agoAnonymous , Try a measure like
AverageX(Summarize(Table, Table[ID], "_1", Minx(filter(Table, Table[System.state]="New"), [System.Createdatetime]), "_2", Minx(filter(Table, Table[System.state]="Done"), [System.Createdatetime])), datediff(_1,_2,day))
Anonymous
3 years agoNot applicable
Hi Amit thanks for solution . I am trying this solution. If I get any difficulty in implementation I will get back to you. Thanks a lot