Forum Discussion
Syndicate_Admin
Administrator
3 years agoCumulative values with start and end date
Hello I would like to achieve the following. Have two date targeting filters such as these: Select year and a final date, and that I will get the accumulated amount for each month o...
- 3 years ago
Hi, Syndicate_Admin ;
You could create a measure as follow:
Measure = CALCULATE(SUM('Table'[value]),FILTER(ALLSELECTED('Table'),[Date]<=MAX('Table'[Date])))The final show:
Best Regards,
Community Support Team _ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
v-yalanwu-msft
Community Support
3 years agoHi, Syndicate_Admin ;
You could create a measure as follow:
Measure =
CALCULATE(SUM('Table'[value]),FILTER(ALLSELECTED('Table'),[Date]<=MAX('Table'[Date])))
The final show:
Best Regards,
Community Support Team _ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.