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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
harri_soares
New Member

Running Total (Cumulative Percentage) by Categorie : Question from a newbie in PowerBI community!

I thougt my problem was simple at first, but I'm still struggling to find an answer for it. Maybe it's because I'm new in PowerBI. Anyway, here's what it is:

 

harri_soares_0-1649636645858.png

*Don't mind the names in Portuguese

 

I've created a table that shows the total losses and percentual for each different product categorie, now I want to show the percentual running total (cumulative percentual) in a new column at the right side. In Excel, this would be simple, I'd just use the formula SUM($A$1:A1) at the first cell and drag the formula all the way down. But in PowerBI it's different and the only content I've found explaining about this problem relate the filter to date time and don't mention this complex part which I talked about. Please give me a hint.

1 ACCEPTED SOLUTION
Jihwan_Kim
Super User
Super User

Hi,

I am not sure if I understood your question correctly, but please check the below picture and the attached pbix file.

All measures are in the attached pbix file.

 

Picture1.png

Value total: = 
SUM( Data[Value] )

 

Pareto percentage: =
VAR currentvalue = [Value total:]
VAR runningtotalbyvaluesize =
    SUMX (
        FILTER ( ALL ( Data[Category] ), [Value total:] >= currentvalue ),
        [Value total:]
    )
VAR allvalue =
    CALCULATE ( [Value total:], ALL ( Data ) )
VAR paretopercentage =
    DIVIDE ( runningtotalbyvaluesize, allvalue )
RETURN
    paretopercentage

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Visit my LinkedIn page by clicking here.


Schedule a meeting with me to discuss further by clicking here.

View solution in original post

3 REPLIES 3
Jihwan_Kim
Super User
Super User

Hi,

I am not sure if I understood your question correctly, but please check the below picture and the attached pbix file.

All measures are in the attached pbix file.

 

Picture1.png

Value total: = 
SUM( Data[Value] )

 

Pareto percentage: =
VAR currentvalue = [Value total:]
VAR runningtotalbyvaluesize =
    SUMX (
        FILTER ( ALL ( Data[Category] ), [Value total:] >= currentvalue ),
        [Value total:]
    )
VAR allvalue =
    CALCULATE ( [Value total:], ALL ( Data ) )
VAR paretopercentage =
    DIVIDE ( runningtotalbyvaluesize, allvalue )
RETURN
    paretopercentage

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Visit my LinkedIn page by clicking here.


Schedule a meeting with me to discuss further by clicking here.

tamerj1
Super User
Super User

@harri_soares 

To do that, first you have to have an index or id column that represents a unique integer of each [NIVEL2] value. 

How do we use the Index/ID column here?

Helpful resources

Announcements
Sept PBI Carousel

Power BI Monthly Update - September 2024

Check out the September 2024 Power BI update to learn about new features.

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

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