This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
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 values of the column {A} and make a new column {B} with the new results (Col A + allocated values at top ten column {A} values).
The X value will be user entry value.
HI @BartzD01 ,
It is hard to coding formula without any detail information. Can you please share some sample data with expected result for test?
Regards,
Xiaoxin Sheng
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).
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
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 31 | |
| 26 | |
| 23 | |
| 22 | |
| 13 |
| User | Count |
|---|---|
| 61 | |
| 47 | |
| 27 | |
| 23 | |
| 18 |