Forum Discussion
visual table heading
- Anonymous4 years ago
Hi sure19 ,
If all values in matrix value field are measures, as my above reply, we couldn't add measure into matrix column. In Power BI, we couldn't catch column header or measure header directly. Here I suggest you to create a hierachy level with measure name manually.
Then create a measure with all measures you create before.
Measure = VAR _AssetHealth2021YTD = 1 VAR _AssetHealthTarget = 2 VAR _CBMCoverage2021YTD = 3 VAR _CBMCoverageTarget = 4 RETURN IF( MAX('Table'[Level2]) ="2021 YTD", switch(MAX('Table'[Level1]),"% Asset Health",_AssetHealth2021YTD,"%CBM Coverage",_CBMCoverage2021YTD,BLANK()), switch(MAX('Table'[Level1]),"% Asset Health",_CBMCoverage2021YTD,"%CBM Coverage",_CBMCoverageTarget,BLANK()) )Don't forget to relate your measures with QC (matrix row) to get correct result.
Best Regards,
Rico ZhouIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi sure19 ,
According to your statement, I know your requirement is to build a matrix with hierachy level in matrix column.
This is based on your data model. Are %Asset Health or %Asset Health Target measures or columns? If they are measures, I think you couldn't achieve your goal.
Your data model should be transformed as below, then you can build a matrix as you want.
Table:
Result:
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- sure194 years agoHelper II
Thanks for the reply Rico, but my data is a calculated measure so as per you, this cannot be used in that case?
- Anonymous4 years agoNot applicable
Hi sure19 ,
If all values in matrix value field are measures, as my above reply, we couldn't add measure into matrix column. In Power BI, we couldn't catch column header or measure header directly. Here I suggest you to create a hierachy level with measure name manually.
Then create a measure with all measures you create before.
Measure = VAR _AssetHealth2021YTD = 1 VAR _AssetHealthTarget = 2 VAR _CBMCoverage2021YTD = 3 VAR _CBMCoverageTarget = 4 RETURN IF( MAX('Table'[Level2]) ="2021 YTD", switch(MAX('Table'[Level1]),"% Asset Health",_AssetHealth2021YTD,"%CBM Coverage",_CBMCoverage2021YTD,BLANK()), switch(MAX('Table'[Level1]),"% Asset Health",_CBMCoverage2021YTD,"%CBM Coverage",_CBMCoverageTarget,BLANK()) )Don't forget to relate your measures with QC (matrix row) to get correct result.
Best Regards,
Rico ZhouIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.