Forum Discussion
Anonymous
3 years agoNot applicable
Cumulative Total
I am looking to calculate a cumulative total of a column based on another column by sequential dates. There are orders for multiple years in the same table. The formula I currently have is making it ...
v-xiaotang
3 years agoCommunity Support
Hi Anonymous
Thanks for reaching out to us.
please try this measure
Cumulative Total by year = SUMX(FILTER(ALL('Table'),year('Table'[date])=YEAR(MIN('Table'[date])) && 'Table'[date]<= MIN('Table'[date])),[value])
Best Regards,
Community Support Team _Tang
If this post helps, please consider Accept it as the solution to help the other members find it more quickly.