Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!Prepping for a Fabric certification exam? Join us for a live prep session with exam experts to learn how to pass the exam. Register now.
Hey All,
Was wondering if anyone could help me create a measure to dynamically calculate Cumulative % of Total Revenue.
Product | Total Revenue | Product Rank | % of Total | Cumulative % of Total |
Product 1 | $ 100,000 | 1 | 30% | 30% |
Product 2 | $ 75,000 | 2 | 23% | 53% |
Product 3 | $ 50,000 | 3 | 15% | 68% |
Product 4 | $ 25,000 | 4 | 8% | 76% |
Product 5 | $ 20,000 | 5 | 6% | 82% |
Product 6 | $ 18,000 | 6 | 5% | 87% |
Product 7 | $ 15,000 | 7 | 5% | 92% |
Product 8 | $ 10,000 | 8 | 3% | 95% |
Product 9 | $ 9,000 | 9 | 3% | 98% |
Product 10 | $ 8,000 | 10 | 2% | 100% |
Total | $ 330,000 | 1 | 100% | 100% |
I created this measure:
Solved! Go to Solution.
You need to sort by Total Revenue rather than by product.
Try this:
Cumulative % of Revenue =
VAR MinRevenue = MINX ( VALUES ( Table1[Product] ), [Total Revenue] )
VAR SalesRT =
CALCULATE (
SUM ( Table1[Revenue] ),
FILTER ( ALLSELECTED ( Table1[Product] ), [Total Revenue] >= MinRevenue )
)
VAR totSales = CALCULATE ( SUM ( Table1[Revenue] ), ALLSELECTED ( Table1 ) )
RETURN
DIVIDE ( SalesRT, totSales, 0 )
You need to sort by Total Revenue rather than by product.
Try this:
Cumulative % of Revenue =
VAR MinRevenue = MINX ( VALUES ( Table1[Product] ), [Total Revenue] )
VAR SalesRT =
CALCULATE (
SUM ( Table1[Revenue] ),
FILTER ( ALLSELECTED ( Table1[Product] ), [Total Revenue] >= MinRevenue )
)
VAR totSales = CALCULATE ( SUM ( Table1[Revenue] ), ALLSELECTED ( Table1 ) )
RETURN
DIVIDE ( SalesRT, totSales, 0 )
Check out the April 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
72 | |
70 | |
68 | |
43 | |
43 |
User | Count |
---|---|
49 | |
42 | |
29 | |
28 | |
27 |