Forum Discussion
Cummulative Sum Calculated Column
- Anonymous2 years ago
Hi PowerRanger1 ,
Thanks tamerj1 for your replies, allow me to provide another insight:
1. create new index column in power query editor.
2. create calculated column and write expression.Column = CALCULATE( SUM('Table'[Revenue]), FILTER( ALL('Table'), 'Table'[FY] = EARLIER('Table'[FY]) && 'Table'[Index] <= EARLIER('Table'[Index]) ) )If your Current Period does not refer to this, please clarify in a follow-up reply.
Best Regards,
Clara Gong
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi PowerRanger1 ,
Thanks tamerj1 for your replies, allow me to provide another insight:
1. create new index column in power query editor.
2. create calculated column and write expression.
Column =
CALCULATE(
SUM('Table'[Revenue]),
FILTER(
ALL('Table'),
'Table'[FY] = EARLIER('Table'[FY]) &&
'Table'[Index] <= EARLIER('Table'[Index])
)
)
If your Current Period does not refer to this, please clarify in a follow-up reply.
Best Regards,
Clara Gong
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- PowerRanger12 years agoNew Member
Thats great, working as expected. Thanks Clara