The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hi!
I have unpivoted table like:
Product | Measure | Unit | Value |
Product 1 | Price | USD | 1000 |
Product 1 | Remains | tn | 10 |
Product 1 | Competitor Price | USD | 1050 |
Product 2 | Price | USD | 1060 |
Product 2 | Remains | tn | 15 |
Product 2 | Competitor Price | USD | 1100 |
Product 3 | Price | USD | 1060 |
... | ... | ... | ... |
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
Solved! Go to Solution.
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
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