Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
5 years ago

Dynamically legend

Hello everyone,

 

We build a schema for analysis any measures in the same sheet

Measure = 
VAR Logic Test = 
COUNTROWS(DISTINCT(FILTER(ALLSELECTED('KPI´s'[KPI]),'KPI´s'[KPI] = "Real Sales"))) = 1 
RETURN 
IF(LogicTest, [Real_Sale],blank())

We utilize the visualization Line and Clustered column charts, in shared axis we have month and column values we have 4 measures (Real sales, Planned Sales,(...)).

 

Our problem is, when for example we selected only measure (Real Sales) the graph value appear correctly but the legend appear all measures (not selected in filter).

 

Is there any way for the legend graph to be dynamic? Or create a outside legend the chart?

 

Thank you.

5 Replies

  • Anonymous 
    Follow below steps to get dynamic legends:-

    1) Open the data table in Power query adn DUPLICATE it and rename the other table.
    2)Remove the unwanted columns from table.
    3)Add index to both tables(Original Table and Duplicate table).


    4)Select and unpivot the columns that you want to display dynamically as legend.


    5)After unpivoting you will get two new columns having ATTRIBUTE and VALUE


    6) Save and close power query.

    7)In Model view tab, create relationship between Original Table and New unpivot table on Index column.

    😎 Now you can put the ATTRIBUTE column from new table(on which we have done unpivoting) in column series of clustered chart.

     

     

     

    • Anonymous's avatar
      Anonymous
      Not applicable

      Hi NidhiBhusari , thank you suggestion.

       

      But I don´t understand why I have create a index.

       

      I will try to explain myself better:

       

      I have two tables in my model, one table (Table1) I have all data what I need and another table (Table2) I created for select all measures in one sheet:

      Table2

      For example:

      Vendas Reais = 
      VAR Logic Test = 
      COUNTROWS(DISTINCT(FILTER(ALLSELECTED('KPI´s'[KPI]),'KPI´s'[KPI] = " Vendas Reais"))) = 1 
      RETURN 
      IF(LogicTest, [Real_Sale],blank())

      The measure [Real_sale] is calculated in Table1.

       

      When we selected in filter a measure the legend graph appear all measures (not selected in filter).

      We want the legend visualizations to show only the measures that are selected.

       

      Thank you.

      • HashamNiaz's avatar
        HashamNiaz
        Solution Sage

        Hi Anonymous !

        Please try changing teh slicer type to be single select & see if that make any difference.

         

        Regards,

        Hasham

    • Anonymous's avatar
      Anonymous
      Not applicable

      Do we have any solution to this requirement?