Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
5 years ago
Solved

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,
    Link

     

    If this post helps then please consider Accept it as the solution to help the other members find it more quickly.

     

     

2 Replies