Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Hi I am trying to calculate a cumulative total for this column, The table is called opportunities.
I have tried the quick measure and other solutions for similar posts but It wont work. Also will cumulative totals work with slicers?
Thanks!
Solved! Go to Solution.
Proud to be a Super User!
Hi, @Anonymous
Try to create a measure like this:
Cumulative total =
CALCULATE (
SUM ( 'Opportunity'[Amount] ),
FILTER (
ALLSELECTED ( 'Opportunity' ),
'Opportunity'[closedate] <= MAX ( 'Opportunity'[closedate] )
)
)
result:
Please refer to the attachment below for details
Hope this helps.
Best Regards,
Community Support Team _ Zeon Zheng
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @Anonymous
Try to create a measure like this:
Cumulative total =
CALCULATE (
SUM ( 'Opportunity'[Amount] ),
FILTER (
ALLSELECTED ( 'Opportunity' ),
'Opportunity'[closedate] <= MAX ( 'Opportunity'[closedate] )
)
)
result:
Please refer to the attachment below for details
Hope this helps.
Best Regards,
Community Support Team _ Zeon Zheng
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
There is another column "Close Date"
Proud to be a Super User!
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.