Forum Discussion
Filtering OUT names from a separate table
- Anonymous6 years ago
Hi Anonymous ,
You can use EXCEPT function to do this.
https://www.youtube.com/watch?v=TL81opk59aE
Regards,
Harsh NathaniAppreciate with a Kudos!! (Click the Thumbs Up Button)
Did I answer your question? Mark my post as a solution!
I think there are a couple of ways to accomplish this. I think I would do the next:
- create a distinct table of the user ID's
- Do not create a relationship between those tables. It should be disconnected.
- Place this new table as a slicer on your screen
- Create a measure like ("User" is your new distinct table)
select = IF(SELECTEDVALUE(Master[UID]) IN FILTERS('User'[ID]), 0,1)
- Add this measure to the filterpane of visual you want to filter
- Tell in filter pane only to show if "select" = 1
It's a few steps, but I've used this technique multiple times and people seem to love this interaction.
- Anonymous6 years agoNot applicable
I will try this out, thanks!
- danielkrol6 years agoHelper II
If you don't get it to work, you might want to post your PBIX file.
- Anonymous6 years agoNot applicable
Yep, not working. I can get the measure created, i disconnected the group list from the master table. I think the complexity of another table where the activity is held may be causing issues. When i add the measure to the filter on the card i have for "passed" % calculation. I had to add a slicer for date - month/year to pull out data on specific time frame.
Reality - i have the following tables:
Activity table and when the activity occurred
Master table - provides link to user detailed information (most measures are created under this table
Then each table that now has a different group list to find understand that groups data.
I would need to scrub my pbix file, as it contains sensitive info. All tables are have the same userID as the main key for linking.
I also was able to create a slicer with the group data that is no longer linked, but it doesn't impact the % passed data, and when adding the select measure to the visual filter, it doesn't allow me to update to state 1.