This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
Hi
I have Product Code, Sales Volume Privot report with Sales volumes posted against each SKU across 12 months till Last month. I have to generate running totals at Product code level, calculate each Product code % of Sale, Cumulative % sale to decide ABC analysis for Product code. I unpivot the months and changed into tabular column. And used the 'Table' visual to show the Totals at SKU level. Totals and Average showed correct results. I want to use the 'Quick Measure' or 'New measure' to calculate 'Cumulative Total Sale' and 'Cumulative Sale %' after sorting the Sales Volume column from highest sales to least. It is easy in Excel but couldn't get the same values in Power BI. I am posting the sample Excel sheet and the expected results in excel and also attaching my PowerBI file.
Any help is greatly appreciated.
PBIX file on One drive:
https://1drv.ms/u/s!Anl_FYPHVeK9bfgygTQSDGmlA1Y
Thanks
Prasad
Solved! Go to Solution.
And here is the measure for Cumulative %age
Cumulative_%age =
CumulativeBI[Cumulative_Total]
/ CALCULATE (
SUM ( CumulativeBI[Sales Volume] ),
ALL ( CumulativeBI[Product Code] )
)
Hi @Prasad1
Here is the measure for Cumulative Total
Cumulative_Total =
VAR Currentsales =
SUM ( CumulativeBI[Sales Volume] )
RETURN
SUMX (
FILTER (
ALL ( CumulativeBI[Product Code] ),
CALCULATE ( SUM ( CumulativeBI[Sales Volume] ) ) >= Currentsales
),
CALCULATE ( SUM ( CumulativeBI[Sales Volume] ) )
)
Add above measure in CumulativeBI table
And here is the measure for Cumulative %age
Cumulative_%age =
CumulativeBI[Cumulative_Total]
/ CALCULATE (
SUM ( CumulativeBI[Sales Volume] ),
ALL ( CumulativeBI[Product Code] )
)
Hi Zubair Muhammad
Brilliant Solution. Yes. It worked beautifully.
Thank you very much for your help.
Regards
Prasad
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 36 | |
| 29 | |
| 29 | |
| 21 | |
| 18 |
| User | Count |
|---|---|
| 68 | |
| 45 | |
| 33 | |
| 24 | |
| 23 |