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

Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more

Reply
Anonymous
Not applicable

CUMULATIVE POURCENTAGE

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%

1 ACCEPTED SOLUTION

You may download my PBI file from here.

Hope this helps.

Untitled.png


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

View solution in original post

5 REPLIES 5
Ashish_Mathur
Super User
Super User

Hi,

What decides the order of the Clients?  Why is KK after XX and so on?  Clarify that.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
Anonymous
Not applicable

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.

Untitled.png


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
themistoklis
Community Champion
Community Champion

@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 

Anonymous
Not applicable

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(....)

Helpful resources

Announcements
Notebook Gallery Carousel1

NEW! Community Notebooks Gallery

Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.

Top Solution Authors