Forum Discussion
How to transform the display table
- 4 years ago
Hi harryli ,
You can accomplish this with a disconnected (no relationships to other tables) table that holds the values of the measures you want to display. The order column allows you to set a custom order.
Then use a switch statement to display the correct value.
displaycolumn =
var selection = SELECTEDVALUE('Measures (2)'[Measure])
RETURN
SWITCH(
TRUE(),
Selection = "Total Bed", [Total Bed],
Selection = "OC", [OC],
Selection = "FR", [FR],
Selection = "NOP", [NOP])Then create a table with the Measure column from the disconnected table and the displaycolumn measure.
I hope this solves your question - if it does please mark it as a solution!
- 4 years ago
Hi harryli ,
No, to follow the solution that Signore_Ands provided you just need to change your table to a matrix in the visualisation pane. Then the "Options" will be available to you.
Hi harryli - is it not a case of changing the setting "switch values to rows"?
That may do the trick.
- harryli4 years agoHelper II
Thanks for your message, but I cannot find the "Options" in the dashboard.
- johncolley4 years agoSolution Sage
Hi harryli ,
That option is only available when using the matrix visual, not the table visual as you currently are using.
- harryli4 years agoHelper II
Hi johncolley ,
That means I need to build the matrix table* to store each of the values I want to display. Or are there any methods to transform the table visual?
*matrix table like the following figure
Thanks a lot.