Forum Discussion
BartzD01
7 years agoRegular Visitor
Value Allocation
I apprieciate if you can help at the following issue. At a Column {A} with 20 values I want to allocate an amount “X” proportionally based on the percentage contribution of the sum of the top 10 va...
BartzD01
7 years agoRegular Visitor
Thanks for answering. Please find below example:
At col A I have the value from 5 -100. The Top 10 values is from 55 - 100. Based on that assumption (top 10) I have to allocate an amount (50) proportionaly only at the top 10 and make a new column that will include the col A and the allocation of the amount(50).
Anonymous
7 years agoNot applicable
HI BartzD01 ,
You can use following calculated column formula to calculate total amount of 'current row value' + 'top 10' records:
Column B =
VAR offset =
SUMX ( TOPN ( 10, Table, [AmountA], DESC ), [AmountA] )
RETURN
[AmountA] + offset
Regards,
Xiaoxin Sheng