Forum Discussion
Anonymous
5 years agoNot applicable
Matrix
Hello, I got this Matrix with this information: And i would like to have the information on the row. For exemple this: But I don't know what to put in my rows to have this b...
- 5 years ago
Anonymous,
- Create a Table with the Enter Data Option with a column (MeasureName) that will have three rows(based on the example) - Production, Sant Effet, and Production nette
- Create a measure:
Value = VAR SelValue = SELECTEDVALUE ( Table[MeasureName] ) RETURN SWITCH ( TRUE (), SelValue = "Production", SUM ( MainTable[Production] ), SelValue = "Sant Effet", SUM ( MainTable[Sant Effet] ), SelValue = "Production nette", SUM ( MainTable[Production nette] ) )3. Add MeasureName to Rows and Value Measure to Column
It will work.
Pragati11
5 years agoSuper User
HI Anonymous ,
Under ROWS section you can move only a column.
Do you have something in your data like a categorical column with 3 values as categories that you have moved the measures for?
I am assuming that under VALUES section you moved 3 measures.
Thanks,
Pragati
Anonymous
5 years agoNot applicable
Pragati11 Hello, no as my 3 values are measure I don't have a categorical column with my values name.