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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
Fatman121
Frequent Visitor

Matrix from unpivoted table - how use different methods of grandtotal calclulating

Hi!

I have unpivoted table like:

ProductMeasureUnitValue
Product 1PriceUSD1000
Product 1Remainstn10
Product 1Competitor PriceUSD1050
Product 2PriceUSD1060
Product 2Remainstn15
Product 2Competitor PriceUSD1100
Product 3PriceUSD1060
............

So, I use matrix for visualize this info. I can't use pivot table because of more then 50 measures.

But in grandtotals I need to calculate the sum for tn-values and average for price-values. 

Is there are the way to do this? Or I will be forced to use pivoted table and prescribe the calculation rule for each measure? 

 

I have already tried to pivot measure via their parent groups (remains and price), but this way make visualization unpretty and unreadable 

1 ACCEPTED SOLUTION
tex628
Community Champion
Community Champion

Hi @Fatman121 ,

Start by creating a measure for each logic:

Remains = SUM(Table[Value])
Price = AVERAGE(Table[Value])


Then create a final measure that switches between the other measures, depending on the value of your "Measure" column. 

Dynamic selection =
SWITCH( SELECTEDVALUE( Table[Measure] ) ,
"Price" , [Price] ,
"Remains" , [Remains]
)


When you use the "Measure" column as the row dimension you should get the different types of logic while only having to use the single "Dynamic selection" measure as the value in the matrix. 

Hope this helps!

Br, 
J


Connect on LinkedIn

View solution in original post

2 REPLIES 2
Fatman121
Frequent Visitor

@tex628  I am very grateful for your help!

tex628
Community Champion
Community Champion

Hi @Fatman121 ,

Start by creating a measure for each logic:

Remains = SUM(Table[Value])
Price = AVERAGE(Table[Value])


Then create a final measure that switches between the other measures, depending on the value of your "Measure" column. 

Dynamic selection =
SWITCH( SELECTEDVALUE( Table[Measure] ) ,
"Price" , [Price] ,
"Remains" , [Remains]
)


When you use the "Measure" column as the row dimension you should get the different types of logic while only having to use the single "Dynamic selection" measure as the value in the matrix. 

Hope this helps!

Br, 
J


Connect on LinkedIn

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.