Forum Discussion
80-20% pie chart distribution
Hi there,
I got data on events that occurred in different areas. I have a measure that calculates no of events occurred in different areas. The measure looks like:
no of events = calculate( countx(filter(table, table[Event date]<=Today()), table[event id]))
I create the meaure for ranking:
Rank = RANKX(ALLSELECTED('Table'[AreaCode]),[No of Interruptions],,DESC,Skip)
Then I create another measure that calculates the cumulative sum of no of events:
cumulative sum =
Dunner2020 , refer if these can help
https://blog.enterprisedna.co/implementing-80-20-logic-in-your-power-bi-analysis/
https://forum.enterprisedna.co/t/testing-the-pareto-principle-80-20-rule-in-power-bi-w-dax/459
https://finance-bi.com/power-bi-pareto-analysis/
https://community.powerbi.com/t5/DAX-Commands-and-Tips/Calculate-the-sum-of-the-top-80/td-p/763156
2 Replies
- amitchandak
Super User
Dunner2020 , refer if these can help
https://blog.enterprisedna.co/implementing-80-20-logic-in-your-power-bi-analysis/
https://forum.enterprisedna.co/t/testing-the-pareto-principle-80-20-rule-in-power-bi-w-dax/459
https://finance-bi.com/power-bi-pareto-analysis/
https://community.powerbi.com/t5/DAX-Commands-and-Tips/Calculate-the-sum-of-the-top-80/td-p/763156- Dunner2020
Post Prodigy
amitchandak third link is cool.