Forum Discussion
Richard76
7 years agoHelper II
Cumm totals
Hi , after numerous attempts I have finally got my cumm budget calculation working (to a degree) . Issue now is the total at the bottom which obviously adds up all the individual days. How can I mak...
v-yuta-msft
7 years agoCommunity Support
You may modify your issue using DAX like pattern below:
Cumn Budgets =
CALCULATE (
[Budget Allocation] * SUM ( Time[YearWdays] ),
ALLSELECTED ( Table )
)
Community Support Team _ Jimmy Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Richard76
7 years agoHelper II
Hi thanks for your help but this doesnt seem to help. The totals on the bottom of the table still add up all the individual 'cumm budgets' per day.