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!
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.
It's hard for me to completely oversee, since the model is not known.
The disadvantage of filtering out this way is that it is all done by coding DAX, so you also need to change your other measures.
There are also techniques that use parameters to determine which rows to load into the datamodel. A change in a parameter causes the data to be loaded again, but then you can constrain the data by the value of the parameter. Never used it, and I don't know if it can help out, since loading data can take up quite an amount of time.
- Anonymous6 years agoNot applicable
So i'm thinking, is there a way to build a new table from my master table but not include the group?
- danielkrol6 years agoHelper II
In Power Query you can create a copie of your table and the remove the column without the group. But I'm not sure if that is what you need though.