Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
Hi
I want to calculate a cumulative % by a DAX Formula (See **bleep**%)
How ?
Client PURCHASES % **bleep**%
XX 100 10% 10%
YY 20 2% 12%
AA 300 30% 42%
KK 240 24% 66%
FF 340 34% 100%
TOTAL 1000 100% 100%
Solved! Go to Solution.
You may download my PBI file from here.
Hope this helps.
Hi,
What decides the order of the Clients? Why is KK after XX and so on? Clarify that.
Hi
Is done randomly here in my example but on the real work will be ordered from the biggest purshase till the lowest
You may download my PBI file from here.
Hope this helps.
@Anonymous
Try the following formulas:
Column_Cumulative_Purchases =
CALCULATE (
SUM ( Sheet1[Purchases]),
ALL ( 'Sheet1' ),
Sheet1[Client] <= EARLIER ( Sheet1[Client])
)
Columnn Cumulative_Purchases % =
var _totalpurchases = CALCULATE(SUM(Sheet1[Purchases]),ALL(Sheet1))
RETURN
CALCULATE (
SUM ( Sheet1[Purchases]),
ALL ( 'Sheet1' ),
Sheet1[Client] <= EARLIER ( Sheet1[Client])
) / _totalpurchases
See attached file
Hi
Thank you for your effort but i want it on a dax formula to put on a matrix not on a table cause i have thousand of lines, so the purchases per client is calculated with a formula (sum(....)
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
89 | |
88 | |
82 | |
64 | |
49 |
User | Count |
---|---|
125 | |
111 | |
88 | |
69 | |
66 |