Forum Discussion
dinomaster
9 years agoFrequent Visitor
Cumulative measure by type and time! Help!
Hi, I'm having a problem with finding the right way to add a cumulative measure. So here's what's going on. I have a table "Apps" where I have several types os Apps (A, B, C, D) and I need to...
- 9 years ago
Hi dinomaster,
You could add another logic in your filter function.
TypeACumulativeTotal = CALCULATE(SUM(Apps[Amount]),FILTER(ALL(Apps),AND(Apps[Type]="A",Apps[Date]<=MAX(Apps[Date]))))
Regards,
Charlie Liao
v-caliao-msft
Microsoft Employee
9 years agoHi dinomaster,
You could add another logic in your filter function.
TypeACumulativeTotal = CALCULATE(SUM(Apps[Amount]),FILTER(ALL(Apps),AND(Apps[Type]="A",Apps[Date]<=MAX(Apps[Date]))))
Regards,
Charlie Liao
dinomaster
9 years agoFrequent Visitor
Thanks v-caliao-msft, it worked! :)