Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
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
I
Solved! Go to Solution.
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
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
| User | Count |
|---|---|
| 59 | |
| 47 | |
| 31 | |
| 18 | |
| 17 |
| User | Count |
|---|---|
| 77 | |
| 66 | |
| 46 | |
| 22 | |
| 22 |