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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
alexsandro
Frequent Visitor

create cumulative column undated and index measure

I need to create an accumulated column but, without using date. I created an index column via measure without using the power query because I need this accumulated to move if I change department or period. I tried to use this index, I tried to create a counter to maybe add to the previous value, but the Earlier function just doesn't work, nor does it recognize dimension columns.

 

my data is currently as follows.
I'm just using only one column the rest of the other columns are measured.

 

https://docs.google.com/spreadsheets/d/12Y79JzUmfviYkP2GZSclYMyBhnjUKdVu/edit?usp=sharing&ouid=11680...

alexsandro_0-1647611952108.png

 

1 ACCEPTED SOLUTION

Here is your dynamic cumulation

cumul = 
var s = sum(abc1[sumSalesRevenues])
var p = max(abc1[COD_PRODUCT])
var a = CALCULATETABLE(values(abc1[COD_PRODUCT]),REMOVEFILTERS(abc1[COD_PRODUCT]))
var b = ADDCOLUMNS(a,"sm",var p = [COD_PRODUCT] return calculate(sum(abc1[sumSalesRevenues]),abc1[COD_PRODUCT]=p))
var c = FILTER(b,[sm]>=s)
return  divide(sumx(c,[sm]),sumx(b,[sm]),0)

lbendlin_0-1648068940653.png

 

see attached pbix

View solution in original post

8 REPLIES 8
alexsandro
Frequent Visitor

I show you.

lbendlin
Super User
Super User

"I created an index column via measure "

 

How? And based on what? 

don't have column indice, I deleted. 
it is possible only with the data in the attachment?

I mean, you can do a RANKX based measure, but without any context I am hesitant to recommend any particular approach. Please provide a more detailed explanation of what you are aiming to achieve. What have you tried and where are you stuck?

I need to create an accumulated that is flexible according to the value of sales (measures).

 

I tried to create a dynamic index, but I couldn't

alexsandro_0-1647961602990.png

 

so I can create a dynamic abc curve.

my attachment below.

 

Link of project.
https://drive.google.com/file/d/1ZpHfXVKXqWspuhCwwYVPwm0rfdeGmfZr/view?usp=sharing

Here is your dynamic cumulation

cumul = 
var s = sum(abc1[sumSalesRevenues])
var p = max(abc1[COD_PRODUCT])
var a = CALCULATETABLE(values(abc1[COD_PRODUCT]),REMOVEFILTERS(abc1[COD_PRODUCT]))
var b = ADDCOLUMNS(a,"sm",var p = [COD_PRODUCT] return calculate(sum(abc1[sumSalesRevenues]),abc1[COD_PRODUCT]=p))
var c = FILTER(b,[sm]>=s)
return  divide(sumx(c,[sm]),sumx(b,[sm]),0)

lbendlin_0-1648068940653.png

 

see attached pbix

Thanks  Ibendlin, it's perfect!

 

based on values of sales.

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

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