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

Get inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.

Reply
Marc_TrueLime
Frequent Visitor

Pareto 80/20 Count amount

Hi guys,

I'm trying to count the amount of records (accounts) based on the value in a specific column ('8020_groepering'). It's in regards to a Pareto (80/20)-analysis for which I found a great deal of  other topics on this forum which really helped me, but I'm stuck on this final issue.

First column is the order of accounts based on sales in the selected period, but the final step is 'simply' counting the amount of accounts which are responsible for 80% of turnover (should be 25, as indicated in the screenshot). Could somebody give me a hint on how to proceed. 

FYI, all mentioned columns are measures, which are all in the same table as all actual sales-data (I'm not sure if that makes any difference).

2019_08_27_12_09_37.png



 

 

 

1 ACCEPTED SOLUTION
v-eachen-msft
Community Support
Community Support

Hi @Marc_TrueLime ,

 

You can use this measure to get your result.

8020_Accounts80 =
CALCULATE (
    COUNTROWS ( DISTINCT ( 'Table'[Name] ) ),
    FILTER ( ALL ( 'Table' ), [Measure] = 80 )
)

Here is my test result.


5-1.PNG

 

Best Regards,

Eads

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

Community Support Team _ Eads
If this post helps, then please consider Accept it as the solution to help the other members find it.

View solution in original post

1 REPLY 1
v-eachen-msft
Community Support
Community Support

Hi @Marc_TrueLime ,

 

You can use this measure to get your result.

8020_Accounts80 =
CALCULATE (
    COUNTROWS ( DISTINCT ( 'Table'[Name] ) ),
    FILTER ( ALL ( 'Table' ), [Measure] = 80 )
)

Here is my test result.


5-1.PNG

 

Best Regards,

Eads

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

Community Support Team _ Eads
If this post helps, then please consider Accept it as the solution to help the other members find it.

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

FebPBI_Carousel

Power BI Monthly Update - February 2025

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

Feb2025 NL Carousel

Fabric Community Update - February 2025

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

Top Solution Authors
Top Kudoed Authors