Forum Discussion

GyMpX's avatar
GyMpX
Frequent Visitor
1 year ago
Solved

filtering a segment filter with select a line in a table

Hello!   I just want to have a dynamic filter which take the only value when I select a line in a table. If i select in my table one No sinistre, i only would like to have one No sinistre in the se...
  • pankajnamekar25's avatar
    1 year ago

    Hello GyMpX 

     

    a slicer cannot automatically take on the single value you select from a table row. When you click on a row, that selection will filter other visuals, including the slicer’s available options, but it won’t update the slicer’s selected state. To achieve a similar effect, you can either use the slicer itself in single-select mode instead of the table, rely on table clicks to drive filtering across visuals, or use workarounds like bookmarks, field parameters, or third-party visuals. A common alternative is creating a DAX measure or card to display the selected value rather than trying to force the slicer to change.

     


    If my response helped you, please consider clicking
    Accept as Solution and giving it a Like 👍 – it helps others in the community too.


    Thanks,


    Connect with me on:

    LinkedIn

     

  • srlabhe's avatar
    1 year ago

    Hi Not usre whats top left visual, but I suggest you to use a card visual, pull the No sinistre field in card and apply the condition 

    Create a filter as below 

    if (isfiltered(table) =true(), 

    maxx(ALLSELECTED(Table),Table[No sinistre]), blank())
    and use this measure in Card Visual