Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
1 year ago
Solved

Table is not interacted properly when select any pie chart slices

Hi Experts,   Table is not highlighting properly when i selected 40-50% range in pie chart. All data from the same table data only. Below the DAX used in pie chart ranges: CM % split = IF...
  • Anonymous's avatar
    Anonymous
    1 year ago

    Hi Anonymous ,

    Creates a measure to be used for sorting.

    Sort = SWITCH(
    MAX('Test Delivery Updates'[CM % split]),
    "<30%",1,
    "30-40%",2,
    "40-50%",3,
    ">50%",4
    )


    Then add this measure to the tooltip field of the pie chart.
    The legend of the pie chart is reordered by Sort By measure.

     

    Best Regards,
    Dengliang Li

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.