Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Dear Community,
I have a flat table
| Column 1 | Column 2 | Column Uniq | Column Value 1 | Column Value 2 | Formula | Expected Result |
| aaaa | 1111 | aaaa1111 | 100 | 12 | 100/(12+3)*12 | 80 |
| aaaa | 1111 | aaaa1111 | 100 | 3 | 100/(12+3)*3 | 20 |
| bbbb | 2222 | bbbb2222 | 200 | 5 | 100/5*5 | 100 |
What formula can be used to receive expected result ?
Solved! Go to Solution.
Hi @slyfox
Try this column
Column =
DIVIDE (
[Column Value 1] * [Column Value 2],
CALCULATE (
SUM ( TableName[Column Value 2] ),
ALLEXCEPT ( TableName, TableName[Column 1] )
)
)
Hi @slyfox
Try this column
Column =
DIVIDE (
[Column Value 1] * [Column Value 2],
CALCULATE (
SUM ( TableName[Column Value 2] ),
ALLEXCEPT ( TableName, TableName[Column 1] )
)
)
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.