Forum Discussion
KWelsh8144
3 years agoHelper II
Calculation per row in matrix
What DAX would i use to calculate a percentage per row.. For example, the below screenshot, 4 in the first column/row, should say 30.77% (4/13).. and then the same for every number listed here wi...
v-yalanwu-msft
3 years agoCommunity Support
Hi, KWelsh8144 ;
Try it.
measure =
DIVIDE (
SUM ( [value] ),
CALCULATE (
SUM ( [value] ),
FILTER (
ALL ( 'table' ),
EOMONTH ( [date], 0 ) = EOMONTH ( MAX ( [date] ), 0 )
)
)
)
If the above one can't help you get the desired result, please provide some sample data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. You can refer the following link to upload the file to the community. Thank you.
Solved: How to upload PBI in Community - Microsoft Power BI Community
Best Regards,
Community Support Team _ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.