Forum Discussion

AlainDelhaise's avatar
AlainDelhaise
Frequent Visitor
2 years ago
Solved

Ignoring Included table filter while maintaining slicer filter

Hello,   I am attempting to compare individual performance against the average performance of a group using a line chart. However I want the user to be able to deselect certain people, to filter o...
  • vicky_'s avatar
    2 years ago

    Disconnected tables are your friend here. I'm not 100% sure what  your data looks like behind all of it, but here's my setup - 

    (btw there's no relationship between the tables)

    I put Name[Name] in a slicer, I then create 2 measures:

     

    All selected names = CONCATENATEX(ALLSELECTED(Names[Name]), Names[Name], ", ") // this is all the names selected in the slicer
    excluding slicer Names = CONCATENATEX(EXCEPT(ALLSELECTED('Names'[Name]), ALLSELECTED('Names (2)'[Name])), 'Names'[Name], ", ")

     

     which gives the following result:

    instead of using concatenatex, you could save the values in a variable, and use them as calculate filter arguments.