Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
AndreaSo
Frequent Visitor

pie chart and distinct count

Hi, I went through several similar solutions but I still did not get to understand how to solve the problem.

 

From data below, I have 5 different products (a1,a2,a3,a4,a5) and some of them are categorised with 8D 8115, this represents that the product has a fault. 

 

I would like to show on a pie grapth how many products we have in total (in this case 5), how many products have defect (in this case a1,a3 and a2) and not affected 2 (a4, a5).

 

This is the data example:

AndreaSo_0-1687156100761.png

 

I tried to use distinct coult of Serial number and add Category into the legend, but this is the result.

AndreaSo_1-1687156100756.png

 

 

 

 

Thank you in advance for help. 

1 ACCEPTED SOLUTION
DOLEARY85
Resident Rockstar
Resident Rockstar

Hi,

 

could you create 2 measures to calculate to totals e.g:

 

Issue = VAR __Table = ADDCOLUMNS('Table',"Categort",[Category])
RETURN
  COUNTROWS(DISTINCT(SELECTCOLUMNS(FILTER(__Table,NOT([Category]="")),"Serial number",[Serial number])))
 
No Issue = CALCULATE(DISTINCTCOUNT('Table'[Serial number]))-[Issue]
 
DOLEARY85_0-1687162901736.png

If I answered your question, please mark my post as solution, Appreciate your Kudos 👍

View solution in original post

4 REPLIES 4
DOLEARY85
Resident Rockstar
Resident Rockstar

Hi,

 

could you create 2 measures to calculate to totals e.g:

 

Issue = VAR __Table = ADDCOLUMNS('Table',"Categort",[Category])
RETURN
  COUNTROWS(DISTINCT(SELECTCOLUMNS(FILTER(__Table,NOT([Category]="")),"Serial number",[Serial number])))
 
No Issue = CALCULATE(DISTINCTCOUNT('Table'[Serial number]))-[Issue]
 
DOLEARY85_0-1687162901736.png

If I answered your question, please mark my post as solution, Appreciate your Kudos 👍

You helped me! It works, thank you a lot. 🙂 

PhilipTreacy
Super User
Super User

Hi @AndreaSo 

 

So you want to show the values 5, 3 and 2?  Why the need to show the total also, why not just add 3 + 2?  maybe I  misunderstand?

 

Phil

 



Did I answer your question? Then please mark my post as the solution.
If I helped you, click on the Thumbs Up to give Kudos.


Blog :: YouTube Channel :: Connect on Linkedin


Proud to be a Super User!


You are correct, the value 5 does not need to be shown explicitly, it just need to be the total of the whole circle.

Helpful resources

Announcements
Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.