Forum Discussion
Sagejah9
Helper III
5 years agoadding a measure to matrix column beside a table column
I would like to add a measure to my matrix next to the other columns. If I add the measure to the values tab in the visulation pane. it will fall under each Attribut column in the matrix. the m...
- Anonymous5 years ago
Hi Sagejah9 ,
You can use the subtotals to show the value.
Create the following measure
Measure = IF(ISINSCOPE('Table'[Attribute]),SUM('Table'[Value]),DIVIDE(CALCULATE(SUM('Table'[Value]),FILTER('Table',[Attribute]="SubjectA"||[Attribute]="SubjectD")),2))You can change the name of subtotals.
Check more details from the attchment.
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
mahoneypat
Microsoft Employee
5 years agoAdding that beside the others ones can be done with a Calculation Group to create an asymmetric matrix, as described here.
Building a Matrix with Asymmetrical Columns and Rows in Power BI - Excelerator BI
Pat