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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
Anonymous
Not applicable

Pareto Chart by Period

I have 5yrs of historical data where I need to provide a chart that tells me how many 'Customers' contributed to the Top 80% of sales

I have managed to get this far by using RANKX (Refer image)

 

Capture2.JPG

 

Issues

1) I dont know how to write a DAX that only COUNT the number of customers giving me Top 80% of Sales (highlighted in Green in the image). I dont want to use to use the FILTER pane

2) I dont know how to write a DAX to help me provide below (including a bar chart)

 FY16FY17FY18FY19FY20
No. Customers contributing to Top80% of Sales1008595110115
1 REPLY 1
Anonymous
Not applicable

1RANK = RANKX(ALL(lookupPartner[Partner Id w Name]),[Actuals Historical],,DESC)
 
Actuals Historical Cumulative = CALCULATE([Actuals Historical],TOPN([1RANK],ALLSELECTED(lookupPartner[Partner Id w Name]),[Actuals Historical]))
 
Actuals Historical Cumulative % = DIVIDE([Actuals Historical Cumulative], [Actuals Historical (partnerID all selected)])

Helpful resources

Announcements
PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

Top Solution Authors