Forum Discussion
APini
9 years agoNew Member
Cumulative Sales
I want to write a measure which filters the data by multiple columns. I want a cumulative total for a product over the course of twelve weeks and then I want to have a measure which shows the per...
- 9 years ago
Hi,
Did you try?
= CALCULATE(SUM('table'[value]) ,
FILTER(ALL('table'),
AND(table[week number]<=MAX('table'[week number]),
table[Sales Person] = "Dave"),
VALUE('table'[Product]))