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

See when key Fabric features will launch and what’s already live, all in one place and always up to date. Explore the new Fabric roadmap

Reply
TRIXTERBINOOB
Regular Visitor

Cumulative Sum BY CLIENT and without date or index column

Hello, dear comunity:

I'm here cause need help with doing a cumulative sum of sales wich I calculated it with SUM(), need to be representated on a pivot table in excel or matrix in Power BI with DAX. If I do a sum of sales and bring customername to labels I have this result, and I need a solution to receive the orange column's behavior. the sales must be ordered by "Total sales in period" value.

TRIXTERBINOOB_0-1714775740294.png

 

I got the sample data in this url to practice: Sample Sales Data (kaggle.com)

 

Sorry for my bad grammar in english, I'm still learning.

 

Kind regards.

1 ACCEPTED SOLUTION
AntrikshSharma
Super User
Super User

@TRIXTERBINOOB 

Measure = 
CALCULATE (
    [Sales],
    WINDOW ( 
        1, ABS, 0, REL, 
        ALL ( 'Table'[Etiquetas de fila] ),
        ORDERBY ( [Sales], DESC )
    )
)

or

Measure 2 = 
VAR CustomerSales = 
    ADDCOLUMNS (
        ALLSELECTED ( 'Table'[Etiquetas de fila] ),
        "@Sales", [Sales] 
    )
VAR Result = 
    SUMX (
        WINDOW ( 
            1, ABS, 0, REL, 
            CustomerSales,
            ORDERBY ( [@Sales], DESC )
        ),
        [@Sales]
    )
RETURN 
    Result

 

View solution in original post

3 REPLIES 3
AntrikshSharma
Super User
Super User

@TRIXTERBINOOB 

Measure = 
CALCULATE (
    [Sales],
    WINDOW ( 
        1, ABS, 0, REL, 
        ALL ( 'Table'[Etiquetas de fila] ),
        ORDERBY ( [Sales], DESC )
    )
)

or

Measure 2 = 
VAR CustomerSales = 
    ADDCOLUMNS (
        ALLSELECTED ( 'Table'[Etiquetas de fila] ),
        "@Sales", [Sales] 
    )
VAR Result = 
    SUMX (
        WINDOW ( 
            1, ABS, 0, REL, 
            CustomerSales,
            ORDERBY ( [@Sales], DESC )
        ),
        [@Sales]
    )
RETURN 
    Result

 

It actually worked!

 

I didn't knew about WINDOW function I investigated documentation and learned a lot from you.

 

Thank u very much!

DataNinja777
Super User
Super User

Hi @TRIXTERBINOOB ,

 

You can achive your required output in many different ways and the following is an example.  

First create a ranking of sales by customers.  

DataNinja777_0-1714802402771.png

Then, create a cumulative total in the order of customer sales ranking by value.  

DataNinja777_1-1714802521592.png

I attach an example pbix file below:

 

Helpful resources

Announcements
May PBI 25 Carousel

Power BI Monthly Update - May 2025

Check out the May 2025 Power BI update to learn about new features.

May 2025 Monthly Update

Fabric Community Update - May 2025

Find out what's new and trending in the Fabric community.