Forum Discussion
Showing % in Matrix
- 9 years ago
You can add two new measures and then add them to your matrix.
Staff % = DIVIDE( SUM(MGRs[Staff Time ]), CALCULATE(SUM(MGRs[Staff Time ]) + SUM(MGRs[Manager Time]), ALL(MGRs[Staff Time ])), 0) Mgr % = DIVIDE( SUM(MGRs[Manager Time]), CALCULATE(SUM(MGRs[Staff Time ]) + SUM(MGRs[Manager Time]), ALL(MGRs[Manager Time])), 0)
- 9 years ago
Select the measure on the right side of the UI. Once the measure is selected, click the 'Modeling' tab to the top. From there, you can specify the field format using that 'Formatting' tab.
Did you try troubleshooting the syntax errors provided to you? The formulas I provided will not be able to be used verbatim; you will need to adjust them to reflect your table[column] names. Mimicing your data structure, the formulas I provided worked to give me your desired output.
ok i think i got it work. how do i get it to show as % rather than just .50 or .40?
- CamFlawless9 years agoFrequent Visitor
Select the measure on the right side of the UI. Once the measure is selected, click the 'Modeling' tab to the top. From there, you can specify the field format using that 'Formatting' tab.