Forum Discussion
gomezc73
Helper V
1 year agoIssue with accumulated amounts
Hi Expert, I need help with the following problem, any idea on how to solve it would be appreciated. I have a table that has an amount per day, so I made a calculation to generate an accumulated...
- Anonymous1 year ago
Hi gomezc73 ,
Thanks for rajendraongole1 reply.
You can create a calculate columnDaily Accumulated = VAR _currentDate = 'Table'[DATE] RETURN CALCULATE( SUM('Table'[AMOUNT]), FILTER( 'Table', 'Table'[DATE] <= _currentDate ) )Then create a line chart
Best regards,
Albert HeIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Anonymous
1 year agoNot applicable
Hi gomezc73 ,
Thanks for rajendraongole1 reply.
You can create a calculate column
Daily Accumulated =
VAR _currentDate = 'Table'[DATE]
RETURN
CALCULATE(
SUM('Table'[AMOUNT]),
FILTER(
'Table',
'Table'[DATE] <= _currentDate
)
)
Then create a line chart
Best regards,
Albert He
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
- gomezc731 year ago
Helper V
It works!!. thank you very Much!!