Forum Discussion

JotaL's avatar
JotaL
Frequent Visitor
6 years ago
Solved

Selecting a Measure by clicking a Matrix Row

Hello   I have created a table where i displayed the several entities as columns and displayed all values as rows. Those are mainly measures. Now I would like to be able to select only the row (not...
  • MFelix's avatar
    6 years ago

    Hi JotaL ,

     

    To what I can understand you have some measures presented on a bubble chart and on a matrix visualization, on that matrix you have turn on the measures on rows i this correct?

     

    Now you want to select the measure and activate the bubble chart for this you need to follow some steps to add the measures in the correct place:

    • Create a disconnected table with the name of your measures:
    Measure

    Measure1

    Measure2

    Measure3

     

    • Add the following measure to your model:
    Selected_Measure =
    SWITCH (
        SELECTEDVALUE ( TABLE[MeasureName] );
        "Measure1"; [Measure1];
        "Measure2"; [Measure2];
        "Measure3"; [Measure3]
    )

     

    Now use this measure on your values on the visualizations you need and the column of the table you created as rows of the matrix and as legend of the bubble chart, now select a row on the matrix should interact with the bubble chart as you need.