Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hello,
Having some troubles calculating Running Total of a measure, in a matrix (so the running total would be based on a measure, not column). Expected result is running total being summed in the following cadence:
Amount | Total | |
Jan | 10 | 10 |
Feb | 30 | 40 |
Mar | 60 | 100 |
Q1 | 100 | 100 |
Apr | 30 | 130 |
May | 25 | 155 |
Jun | 20 | 175 |
Q2 | 75 | 175 |
The existing measure is below:
Any ideas on how this could be achieved?
Solved! Go to Solution.
Hi @niculeica ,
Please have a try.
_Renewal amount running total =
CALCULATE (
[_Renewal amount],
FILTER (
ALLSELECTED ( _Timeline[_M] ),
ISONORAFTER ( _Timeline[_M], MAX ( _Timeline[_M] ), DESC )
)
)
How to Get Your Question Answered Quickly
If it does not help, please provide more details with your desired output and pbix file without privacy information (or some sample data) .
Best Regards
Community Support Team _ Rongtie
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @niculeica ,
Please have a try.
_Renewal amount running total =
CALCULATE (
[_Renewal amount],
FILTER (
ALLSELECTED ( _Timeline[_M] ),
ISONORAFTER ( _Timeline[_M], MAX ( _Timeline[_M] ), DESC )
)
)
How to Get Your Question Answered Quickly
If it does not help, please provide more details with your desired output and pbix file without privacy information (or some sample data) .
Best Regards
Community Support Team _ Rongtie
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
User | Count |
---|---|
76 | |
75 | |
45 | |
31 | |
27 |
User | Count |
---|---|
99 | |
89 | |
52 | |
48 | |
46 |