Forum Discussion
Removing certain columns in a matrix
I have the below matrix but I only want the 2021 ANZ column to appear once, to the right of the 2021 charge count column.
Is this possible?
Hi Anonymous
You can represent the 2021Anz column as a total column.
You can try measure as:
measure = IF( HASONEFILTER('Table'[year]), [Charge count], [2021 Anz] )Modify the name of column subtotals:
Here is the output:
The pbix is attached, please check.
Best Regards,
LinkIf this post helps then please consider Accept it as the solution to help the other members find it more quickly.
2 Replies
- amitchandak
Super User
Anonymous , Seem like you need a Hybrid Table
if you are looking for a Hybrid display with Matrix Column and measure
https://community.powerbi.com/t5/Community-Blog/Creating-a-custom-or-hybrid-matrix-in-PowerBI/ba-p/1354591
https://community.powerbi.com/t5/Quick-Measures-Gallery/The-New-Hotness-Custom-Matrix-Hierarchy/m-p/963588#M428vote for Hybrid Table
https://ideas.powerbi.com/ideas/idea/?ideaid=9bc32b23-1eb1-4e74-8b34-349887b37ebc - v-xulin-mstf
Community Support
Hi Anonymous
You can represent the 2021Anz column as a total column.
You can try measure as:
measure = IF( HASONEFILTER('Table'[year]), [Charge count], [2021 Anz] )Modify the name of column subtotals:
Here is the output:
The pbix is attached, please check.
Best Regards,
LinkIf this post helps then please consider Accept it as the solution to help the other members find it more quickly.