Forum Discussion
andreazambon
Helper V
3 years agoDelta value between 2 weeks
Hi there. I'm trying to calculate the delta% between th last week agree with my filter anche le last-1 week. I try with this: Delta%PerditaLast =
VAR PercMaxWeek= if(MAX(DateTable[week...
lbendlin
Super User
3 years agoPlease show a couple of rows of your "DateTable" table.
- andreazambon3 years ago
Helper V
- lbendlin3 years ago
Super User
var thisweek = max(DateTable[Week])
var prevweek = calculate(max(DateTable[Week]),all(DateTable),DateTable[Week])<thisweek)- andreazambon3 years ago
Helper V
Thanks for your reply, I think that I can use this to my case.
Instead of this solution, what if I want to show the difference between a week and the previous one?
For example, in WK15 I want to show the difference between WK 15 and WK14, in WK 14 the difference between WK 14 and WK 13..