Hi,
I have a lot of week over week measures in my model. At the moment the way those are implemented is as follows:
MeasureWoW := ([Measure]-[MeasurePrevWeek])/[MeasurePrevWeek]
MeasurePrevWeek := Calculate([Measure],Dateadd(calendar[Date],-7,Day))
Since these calculations are the...