Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
What is Pareto Analysis?
Pareto Analysis is a decision-making technique based on the Pareto Principle, also known as the 80/20 rule. This principle suggests that 80% of outcomes result from 20% of the inputs or efforts.
Examples of the Pareto Principle:
How to create Pareto Chart in Power BI
A Pareto chart combines bars and a line graph. The bar lengths represent the sum of values (e.g., sales), while the line indicates the cumulative percentage total. Below is a step-by-step guide to creating a Pareto chart in Power BI.
The screenshot of the pareto chart is shown below.
Step 1: – Pick the visual “Line and clustered column chart” Drag the sales and product category from the field section to the value fieldand the sum of sales is represented in descending order.
Step 2: – Calculate the Cumulative sum of the sales.
Cumulative sales =
Var A= SUM(Orders[Sales])
return
SUMX(
FILTER(
SUMMARIZE(ALL(Orders),Orders[Product Sub-Category],
“revenue”,[Sales_]),
[revenue]>=A),
[revenue]
)
Step 3:- In order to create a line graph, create a measure with a cumulative percentage.
cumulative percentage =
Var A=[Cumulative sales]
var B=CALCULATE([Sales_],All(Orders))
return DIVIDE(A,B)
Drag the Cumulative percentage measure from the field section to the Line y-axis field.
Step 4:- I have also added a static 80% line.
line = 0.8
The Pareto chart helps identify the key contributors to your sales. As shown in the example, the spotlight product category accounts for 80% of the revenue.
Best Regards
Anmol Malviya
Data Analyst | Addend Analytics
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.