Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

The Power BI Data Visualization World Championships is back! It's time to submit your entry. Live now!

Reply
unclebocky
Frequent Visitor

Column Order in Matrix - Show all columns for each value together

Is there an equivalent feature in Power BI to Excel pivot table sigma values field that would allow me to keep all columns for each value together in the matrix visual when displaying multiple values?

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @unclebocky ,

 

Currently, there seems no direct feature to achieve.

Here's my workaround.

Sample data

vstephenmsft_1-1663824963047.png

 

1.Create a hierarchical table. I created by entering data.

vstephenmsft_0-1663824943499.png

2.Create a measure that returns different types of results.

Measure =
SWITCH (
    MAX ( 'Table (2)'[Type] ),
    "Premium",
        SUMX (
            FILTER ( 'Table', [Category] = MAX ( 'Table (2)'[Category] ) ),
            [Premium]
        ),
    "Sale", SUMX ( FILTER ( 'Table', [Category] = MAX ( 'Table (2)'[Category] ) ), [Sale] )
)

Here's the result.

vstephenmsft_2-1663825084468.png

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.

 

View solution in original post

3 REPLIES 3
VijayP
Super User
Super User

@unclebocky 

Any example?! will help to look at the point!




Did I answer your question? Mark my post as a solution! Appreciate your Kudos!!
MY Blog || My YouTube Channel || Connect with me on Linkedin || My Latest Data Story - Ageing Analysis

Proud to be a Super User!


Here is an example.  This is showing year of coverage on the rows and gender as a column field.  I am showing two value measures of sales and premium.  I instead want to show the two sales columns side by side and then the two premiums columns side by side for each gender.  If this was an excel pivot table, I could just use the "Σ Values" field to reorder the columns.  Is there an equivalent in PBI?

 

PBI Ex.png

Anonymous
Not applicable

Hi @unclebocky ,

 

Currently, there seems no direct feature to achieve.

Here's my workaround.

Sample data

vstephenmsft_1-1663824963047.png

 

1.Create a hierarchical table. I created by entering data.

vstephenmsft_0-1663824943499.png

2.Create a measure that returns different types of results.

Measure =
SWITCH (
    MAX ( 'Table (2)'[Type] ),
    "Premium",
        SUMX (
            FILTER ( 'Table', [Category] = MAX ( 'Table (2)'[Category] ) ),
            [Premium]
        ),
    "Sale", SUMX ( FILTER ( 'Table', [Category] = MAX ( 'Table (2)'[Category] ) ), [Sale] )
)

Here's the result.

vstephenmsft_2-1663825084468.png

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.

 

Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

The Power BI Data Visualization World Championships is back! It's time to submit your entry.

December 2025 Power BI Update Carousel

Power BI Monthly Update - December 2025

Check out the December 2025 Power BI Holiday Recap!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.