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.
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.
Pragati11
5 years agoSuper User
HI Anonymous ,
In that case follow the solution mentioned by SivaMani using the approach of a disconnected table.
Thanks,
Pragati
- Anonymous5 years agoNot applicable
Pragati11 ok thank you, but as I reply to him it will not re calculate my values if I change the filters no?
- Pragati115 years agoSuper User
Hi Anonymous ,
Ideally it should not.
Just try and let me know how it works.
Thanks,
Pragati
- SivaMani5 years agoResident Rockstar
Anonymous, Don't worry!
The report filters will filter the data and measures will recalculate accordingly.
- Anonymous5 years agoNot applicable
Thank you its working!