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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
power2
Frequent Visitor

Pareto Chart showing same percentage for same quantity categories

Hello everyone,

The pareto I created shows the same percentage for the same quantity categories. As you can see in the screenshot, When the count is 3 on the x bar, the pareto shows %87 for all of them, and when it's 2 on the x bar, same thing, it shows %94 for all of them.

I want my pareto to randmoly pick the priority and just show me the cumulitaive percentage as it goes up.

 

How do I fix this?

 

Here is my measure:

 
Reason Pareto =
VAR Totaltags = CALCULATE(SUM(eTags[COUNT]), ALLSELECTED(eTags))
VAR Currentetags = SUM(eTags[COUNT])
VAR SummarizedTable =
SUMMARIZE(
    ALLSELECTED(eTags),
    eTags[Cause],
    "Count", SUM(eTags[COUNT])
)
VAR CumulativeSum =
SUMX(
    FILTER(SummarizedTable, [Count] >= Currentetags),
    [Count]
)
RETURN
CumulativeSum/Totaltags
 
 
 

Screenshot 2024-07-22 080304.png

1 REPLY 1
Anonymous
Not applicable

Hi @power2 ,

When multiple categories have the same count, they end up with the same cumulative percentage. To resolve this, you need to ensure that the categories are uniquely identified, even when they have the same count. Could you please provide some raw data from the ‘eTags’ table (excluding any sensitive information) in Text format, along with your expected result and the backend logic based on your sample data? This will help us find an appropriate solution. You can refer to the following link for guidance on how to share the required information:

How to provide sample data in the Power BI Forum

 

Additionally, it would be helpful if you could share a simplified .pbix file. You can refer to the following link for instructions on how to upload the file to the community. Thank you.

How to upload PBI in Community

Best Regards

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.