The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
I have a multi-line chart displaying 2 running total measures.
When displaying values as numbers, the graphs are correct:
Numeric Running Totals
I would like to display the values as percentages of the Planned Cumulative Total.
Displaying only the planned series by percentage looks as desired:
Planned %
As soon as I add the Completed series by percentage, it displays incorrectly since the Completed percentage is with respect to the Completed grand total instead of the Planned Grand Total:
Multiple %
How can I force the running Total % of my Completed series to be calculated with respect to the Planned Grand Total in the same chart?
Thank s in advance.
Ross
Solved! Go to Solution.
@MFelix, I had a similar suggestion from a collegue.
Ultimately, the measure needed for my Closed line needed to consist of:
Running Pct Closed = VAR TotalPlanned = CALCULATE(SUM(Stories[Points Planned]), ALL(Stories)) Return DIVIDE([Points Closed (Cumulative)], TotalPlanned, 0)
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em Português@MFelix, I had a similar suggestion from a collegue.
Ultimately, the measure needed for my Closed line needed to consist of:
Running Pct Closed = VAR TotalPlanned = CALCULATE(SUM(Stories[Points Planned]), ALL(Stories)) Return DIVIDE([Points Closed (Cumulative)], TotalPlanned, 0)