Forum Discussion
Running total for last 4 Quarters
- 5 years ago
Hi, Anonymous
According to your description, you want to get the running total of the last four quarters, I think you can achieve this using calculated column, you can try these calculated columns:
Index = RANKX('Table',[Year quater],,ASC,Dense)Sum of capas due = CALCULATE( SUM('Table'[# of capas due]), FILTER(ALLSELECTED('Table'), [Index]<=EARLIER('Table'[Index])&& [Index]>=EARLIER('Table'[Index])-3 ))Sum of Due-Ontime = CALCULATE( SUM('Table'[# of Due-Ontime]), FILTER(ALLSELECTED('Table'), [Index]<=EARLIER('Table'[Index])&& [Index]>=EARLIER('Table'[Index])-3 ))Then you can get the output like this:
Then you can create a table chart and place it like this:
And you can get what you want.
You can download my test pbix file here
If this result is not what you want, you can post some sample data(without sensitive data) and your expected result.
How to Get Your Question Answered Quickly
Best Regards,
Community Support Team _Robert Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- Anonymous5 years ago
Thank You so much....its working as expected๐
Thank You so much....its working as expected๐
Hi, Anonymous
Glad to hear that you have sloved this problem, would you like to mark my reply as a solution so that others can learn from it too?
Thanks in advance!๐
How to Get Your Question Answered Quickly
Best Regards,
Community Support Team _Robert Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.