Forum Discussion
Anonymous
5 years agoNot applicable
Calculate difference between categories
I'm looking for a method to show the difference in velocity between project ending dates. Represented here is the average velocity achieved between project end dates. So, I'd want to...
- 5 years ago
Anonymous , Try a measure like
measure =
Var _last = maxx(filter(allselected(Table), Table[Date] < max(Table[Date])),Table[Date])
return
sum(Table[Velocity]) - calculate(sum(Table[Velocity]) ,filter(allselected(Table),Table[Date] =_max))
amitchandak
5 years agoSuper User
Anonymous , Try a measure like
measure =
Var _last = maxx(filter(allselected(Table), Table[Date] < max(Table[Date])),Table[Date])
return
sum(Table[Velocity]) - calculate(sum(Table[Velocity]) ,filter(allselected(Table),Table[Date] =_max))