Forum Discussion
Anonymous
4 years agoNot applicable
Measure to find the Cumulative Sum Values
Hi, I have two fields in my table. YYYY-MM which the year and month details. Due amount which has the due amount that is yet to come for respective year and month. I need a Measure to find the Cu...
- 4 years ago
Hi ,
Please try:
Measure = SUMX(FILTER(ALLSELECTED('Table'),'Table'[YYYY-MM] <= MAX('Table'[YYYY-MM]) ), 'Table'[Due Amount])Best Regards,
Liang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
V-lianl-msft
Community Support
4 years agoHi ,
Please try:
Measure = SUMX(FILTER(ALLSELECTED('Table'),'Table'[YYYY-MM] <= MAX('Table'[YYYY-MM]) ), 'Table'[Due Amount])
Best Regards,
Liang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.