Forum Discussion
carlm1975
8 years agoFrequent Visitor
Calculated column in Matrix
I have the matrix below, Id like to be able to show rework percent (which is currently being calculated in the SQL) so that the total is correctly shown rather than being a sum. Hope this makes sense...
- 8 years ago
Hi carlm1975,
To get the correct total percent, create a measure using DAX like below:
Total Percent = SUM ( Table[#ReworkReceived] ) / SUM ( Table[#AssessmentsCleared] )
Regards,
Jimmy Tao
v-yuta-msft
8 years agoCommunity Support
Hi carlm1975,
To get the correct total percent, create a measure using DAX like below:
Total Percent = SUM ( Table[#ReworkReceived] ) / SUM ( Table[#AssessmentsCleared] )
Regards,
Jimmy Tao