Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi Team,
I am working on a 100% Stacked Column Chart where I want to see the percentage of each quarter along with the Geography breakdown. In the Matrix table, I am getting exactly 100% (sum of APJ, AMS, & EMEA) for each quarter (see the screenshot below for reference).
However, when I use the same Matrix data in the 100% Stacked Column Chart, the total for each quarter shows diffrent percentage and it automatically adjusts to the Percentage of Grand Total (screenshot attached for reference).
Could you please suggest a solution to resolve this issue?
Thank you.
Solved! Go to Solution.
@harirao
That's a basic method to calculate percentage, this might change depending on you logic. If you have issues using this, please share a sample file or logic along with column names.
Hi @harirao ,
Thanks for NaveenGandhi reply.
You can try measure below
Measure =
VAR a = SUM('Table'[Value])
VAR b =
CALCULATE(
SUM('Table'[Value]),
ALLEXCEPT(
'Table',
'Table'[Qtr]
)
)
RETURN
a/b
Final output
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
Hi @harirao ,
Thanks for NaveenGandhi reply.
You can try measure below
Measure =
VAR a = SUM('Table'[Value])
VAR b =
CALCULATE(
SUM('Table'[Value]),
ALLEXCEPT(
'Table',
'Table'[Qtr]
)
)
RETURN
a/b
Final output
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
Hi @harirao
This issue might be due to the decimal palces under datalabel->detail->value decimal places. try chaning this to 2 places.
Also try to create the percent calculation as a measure and mark it as percentage data type, That's the best practice you can follow.
If this post helps, then please consider Accept it as the solution to help the others find it more quickly. Appreciate you kudos!!
Follow me on LinkedIn!!!
As mentioned, I tried changing it to 2 decimal places. Please see the screen print below for your reference.
Could you please share a sample DAX measure for the "Percent Calculation"?
Thank you
@harirao
That's a basic method to calculate percentage, this might change depending on you logic. If you have issues using this, please share a sample file or logic along with column names.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 96 | |
| 70 | |
| 50 | |
| 42 | |
| 40 |