Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
4 years ago

Field Parameters and Sorting based on measure

Hi, 
I am using Field parameters in a drop down and the chart to change accordingly to the dropdown. The chart is a ranking chart(Clustered bar chart) and I want to sort the chart based on the measure selected from the field parameters in descending order. Every time I choose a different value in dropdown my sort will be reset as it as different measure. Is there a work around for this?. Eg. write a new measure to always sort by the selected measure in descending order and use it in the chart.

 

PS, I do not want to deviate from field parameters and use another alternatives to change the chart dynamically with the dropdown selection.

6 Replies

  • Anonymous , Once I sort it on a measure it always remains in that, even when I change that

     

     

     

     

     

     

  • Anonymous , Once I sort it on a measure it always remains in that, even when I change that

     

     

     

     

     

     

  • Hi Anonymous ,

     

    Did you create a dynamic Xaxis which is filtered by slicer? As far as I know, if you sort the visual by column in X aixs, Power BI will change the sort dynamiclly.

    Here I create a sample.

    Measure:

    Measure = 
    SWITCH(SELECTEDVALUE('Combine Table'[Category]),
    "Region",CALCULATE(SUM(Data[Value]),USERELATIONSHIP(Data[Region],Region[Region])),
    "Year",CALCULATE(SUM(Data[Value]),USERELATIONSHIP(Data[Year],'Year'[Year])))

    Result is as below.

    Best Regards.

    • Anonymous's avatar
      Anonymous
      Not applicable

      Hi RicoZhou2 ,

      My slicer has various measures(field parameters) used in the chart, not the columns and I am the measures for the X-axis of a clustered bar chart. I see that your solution is using column to sort not the measures.