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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
marcosim
New Member

Cumulative total for pareto

Hi everyone!

 

I've read a lot of posts on this topic but I am still missing something.

I have created a very simple table called 'Data':

 

ProductTotal Sales
BA1000
CWA10000
DIN8000
ENC2000

 

Then the following calculated colums:

 
Rank = RANKX(Data;Data[Total Sales])

 

Cumulated = CALCULATE

(
SUM(Data[Total Sales]);
FILTER(ALL(Data[Rank]);Data[Rank] <= MAX(Data[Rank]))
)

 

However the result in Cumulated is the exact same values I have in Total Sales.

What am I missing?

Thank you!

1 ACCEPTED SOLUTION
MFelix
Super User
Super User

Hi @marcosim ,

 

If you are making a calculated column for the cumulative you should redo your formula to:

 

Cumulated = CALCULATE

(
SUM(Data[Total Sales]);
FILTER(ALL(Data);Data[Rank] <= EARLIER(Data[Rank]))
)

 

 


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



View solution in original post

3 REPLIES 3
amitchandak
Super User
Super User

Refer

https://community.powerbi.com/t5/Desktop/Running-Total-on-a-non-date-column/td-p/44470

https://community.powerbi.com/t5/Desktop/Cumulative-sum-without-date-field/td-p/102967

 

Also try if this can work

Cumulated = CALCULATE
(
SUM(Data[Total Sales]);
FILTER(ALL(Data[product]);Data[product] <= earlier(Data[product]))
)

 

Appreciate your Kudos. In case, this is the solution you are looking for, mark it as the Solution. In case it does not help, please provide additional information and mark me with @
Thanks. My Recent Blog -
Winner-Topper-on-Map-How-to-Color-States-on-a-Map-with-Winners , HR-Analytics-Active-Employee-Hire-and-Termination-trend
Power-BI-Working-with-Non-Standard-Time-Periods And Comparing-Data-Across-Date-Ranges

Connect on Linkedin

MFelix
Super User
Super User

Hi @marcosim ,

 

If you are making a calculated column for the cumulative you should redo your formula to:

 

Cumulated = CALCULATE

(
SUM(Data[Total Sales]);
FILTER(ALL(Data);Data[Rank] <= EARLIER(Data[Rank]))
)

 

 


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



VasTg
Memorable Member
Memorable Member

@marcosim 

 

You should use ALL(TABLE) instead of just the column.

 

 

Measure = CALCULATE(SUM('Table'[Total Sales]),FILTER(ALL('Table'),'Table'[Rank]<=MAX('Table'[Rank])))

 

image.png

Read about "Context transition" in Calculate.

 

If it helps, mark it as a solution

Kudos are nice too.

Connect on LinkedIn

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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