Forum Discussion

harryli's avatar
harryli
Helper II
4 years ago
Solved

How to transform the display table

As you may see from the above figures, the question is I would like to transform the table to be the following: Total Bed 465 OC           89 FR            236 NOP        140   Thanks...
  • johncolley's avatar
    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!

  • johncolley's avatar
    johncolley
    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.