Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
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.
Solved! Go to 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)
see attached pbix
I show you.
"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
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)
see attached pbix
Thanks Ibendlin, it's perfect!
based on values of sales.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
21 | |
15 | |
14 | |
11 | |
7 |
User | Count |
---|---|
25 | |
24 | |
12 | |
11 | |
11 |