Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
I have created a measure that shows the work distibution of my resources in precentage. I use this measure in a pie chart and it shows up fine.
But after the latest updated they added percentage distribution on the pie chart by default. Now my pie chart shows two different percentages. One from my measure and the other from the chart inside brackets. The thing is though that the two perventages are different.
For example my measure shows a 69.87% percentage while the brackets show a 74.77% percentage. The same goes for the rest of my data, 15.28% and 16.36%, 2.18% and 2.34% etc.
Why is that?
Solved! Go to Solution.
@mork Your Numerator uses COUNTA (which ignores blanks) while your Denominator uses COUNTROWS (which counts ALL)
This is will definitely make the % not add up to 100% (if you have blanks) Convert your pie chart to a Table and Check
You have to be consistent either use COUNTA for both or COUNTROWS for both
Let me know if this takes care of it.
You measure most likely doesn't take into account some filter applied to the pie chart.
But without any details - who knows...
my measure is the following:
WorkDistributionPercentage = COUNTA ('Table'[TypeOfWork])/ CALCULATE (COUNTROWS('Table');ALL('Table'[TypeOfWork]))
This is filtered by work department and date. I get different percentages in my graph. When I remove the filters both percentages change and the difference becomes even bigger. For example what was 69.87% and 74.77% becomes 32.97% and 61.95%. The second percentage is the percentage that comes from the pie chart. Another thing that I noticed though is that in the pie chart the piece that represents the 32.97%/61.95% in size is closer to 61.95% which is really weird. How can my measure provide a number under 50% and the size of the piece of the pie be bigger that 50%?
Also anotehr thing that I noticed is that none of the two percentages add up to 100%. Though the default percentage from the pie chart comes closer at 99.84% while my measure's percentage is around 50%. I don't remember having that issue with my measure before the latest update.
@mork Your Numerator uses COUNTA (which ignores blanks) while your Denominator uses COUNTROWS (which counts ALL)
This is will definitely make the % not add up to 100% (if you have blanks) Convert your pie chart to a Table and Check
You have to be consistent either use COUNTA for both or COUNTROWS for both
Let me know if this takes care of it.
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 45 | |
| 38 | |
| 34 | |
| 21 | |
| 17 |
| User | Count |
|---|---|
| 66 | |
| 64 | |
| 31 | |
| 26 | |
| 26 |