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

Top Solution Authors