Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
I need to get each row item of Extract Loss and divide it by the total sum of that column = % Contribution.
In this screenshot, I would need 388.91 / 670000.49, and then 2067.23 / 670000.49...
Solved! Go to Solution.
@Anonymous Try:
Measure =
VAR __ExtractLoss = SUM('Table'[Extract Loss])
VAR __AllExtractLoss = SUMX(ALLSELECTED('Table'),[Extract Loss])
VAR __Result = DIVIDE(__ExtactLoss, AllExtractLoss)
RETURN
__Result
@Anonymous Try:
Measure =
VAR __ExtractLoss = SUM('Table'[Extract Loss])
VAR __AllExtractLoss = SUMX(ALLSELECTED('Table'),[Extract Loss])
VAR __Result = DIVIDE(__ExtactLoss, AllExtractLoss)
RETURN
__Result
can you paste sample data like 5 rows
It can be done
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 61 | |
| 54 | |
| 41 | |
| 41 | |
| 22 |
| User | Count |
|---|---|
| 171 | |
| 136 | |
| 119 | |
| 80 | |
| 54 |