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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply

Pareto chart with Other bar

Hi all, 

 

I have done a little research and I am unable to find anything that meets my requirement. I have built a pareto chart but its currently displaying all of the causations along the x-axis, as there are nearly 200 of these its quite a long scroll. 😀

 

What I am after is when the cumulative total hits 80% I would like the remaining 20% of the causations wrapped up in to an 'Other' bar on the chart. This 'Other' bar would then total 100%. I am not even sure if its possible but it seems to be beyond my abilities at the moment so hopefully one of you can help, or at least point me in the right direction where I can do some more research. 

 

Thanks

Rich

 

 

 

2 REPLIES 2
Fowmy
Super User
Super User

@richardburling 

Can you share the formula you used for the Pareto calculation and sample data?
You can save your files in OneDrive, Google Drive, or any other cloud sharing platforms and share the link here.
How to paste sample data with your question?

 

Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

Hi Fowmy, 

 

Unfortunately I cant share the source data as it breaks GDPR. However, below is the DAX formula I used to create the Pareto line (this was adpated from a video on YouTube).

 

Pareto Line =
VAR TotalDue = CALCULATE(sum('FCT_LUL GBS Orders raw data for per'[Total Due (Incl VAT)]),ALLSELECTED('FCT_LUL GBS Orders raw data for per'))
VAR CurrentDue = sum('FCT_LUL GBS Orders raw data for per'[Total Due (Incl VAT)])
VAR SummerizedTable =
SUMMARIZE(
ALLSELECTED('FCT_LUL GBS Orders raw data for per'),
'FCT_LUL GBS Orders raw data for per'[Office],
"TotalDue",SUM('FCT_LUL GBS Orders raw data for per'[Total Due (Incl VAT)])
)
VAR CumulativeSum =
SUMX(
FILTER(SummerizedTable, [TotalDue] >= CurrentDue),
[TotalDue]
)
RETURN
CumulativeSum/TotalDue*100

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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