<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Filtering OUT names from a separate table in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-OUT-names-from-a-separate-table/m-p/1239483#M20311</link>
    <description>&lt;P&gt;If you don't get it to work, you might want to post your PBIX file.&lt;/P&gt;</description>
    <pubDate>Tue, 21 Jul 2020 19:55:31 GMT</pubDate>
    <dc:creator>danielkrol</dc:creator>
    <dc:date>2020-07-21T19:55:31Z</dc:date>
    <item>
      <title>Filtering OUT names from a separate table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-OUT-names-from-a-separate-table/m-p/1239406#M20308</link>
      <description>&lt;P&gt;I have a master list that has all users listed by their ID.&amp;nbsp; Then i have specific groups that we ran tests against and collected information on for those groups.&amp;nbsp; I know i can use the filter, and filter the page to only those users, but what i need to do is the reverse.&amp;nbsp; Capture data on all users but not include the ones in the specific groups.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;Master List - all have a passing rate of 92%&lt;/P&gt;&lt;P&gt;I need passing rate on just the specific group of users&lt;/P&gt;&lt;P&gt;Group 1 - passing rate on only this group ( i used page filter and basic filtering to select only those folks)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Master list minus those in group 1 - need passing rate for these but exclude people in group 1.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help or guidance, this is a bit complex for me as a beginner.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jul 2020 19:11:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-OUT-names-from-a-separate-table/m-p/1239406#M20308</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-07-21T19:11:50Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering OUT names from a separate table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-OUT-names-from-a-separate-table/m-p/1239441#M20309</link>
      <description>&lt;P&gt;I think there are a couple of ways to accomplish this. I think I would do the next:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;create a distinct table of the user ID's&lt;/LI&gt;&lt;LI&gt;Do &lt;STRONG&gt;not&lt;/STRONG&gt; create a relationship between those tables. It should be disconnected.&lt;/LI&gt;&lt;LI&gt;Place this new table as a slicer on your screen&lt;/LI&gt;&lt;LI&gt;Create a measure like ("User" is your new distinct table)&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;select = IF(SELECTEDVALUE(Master[UID]) IN FILTERS('User'[ID]), 0,1)​&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Add this measure to the filterpane of visual you want to filter&lt;/LI&gt;&lt;LI&gt;Tell in filter pane only to show if "select" = 1&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;It's a few steps, but I've used this technique multiple times and people seem to love this interaction.&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jul 2020 19:36:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-OUT-names-from-a-separate-table/m-p/1239441#M20309</guid>
      <dc:creator>danielkrol</dc:creator>
      <dc:date>2020-07-21T19:36:32Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering OUT names from a separate table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-OUT-names-from-a-separate-table/m-p/1239479#M20310</link>
      <description>&lt;P&gt;I will try this out, thanks!&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jul 2020 19:53:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-OUT-names-from-a-separate-table/m-p/1239479#M20310</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-07-21T19:53:57Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering OUT names from a separate table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-OUT-names-from-a-separate-table/m-p/1239483#M20311</link>
      <description>&lt;P&gt;If you don't get it to work, you might want to post your PBIX file.&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jul 2020 19:55:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-OUT-names-from-a-separate-table/m-p/1239483#M20311</guid>
      <dc:creator>danielkrol</dc:creator>
      <dc:date>2020-07-21T19:55:31Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering OUT names from a separate table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-OUT-names-from-a-separate-table/m-p/1239671#M20315</link>
      <description>&lt;P&gt;Yep, not working.&amp;nbsp; I can get the measure created, i disconnected the group list from the master table.&amp;nbsp; I think the complexity of another table where the activity is held may be causing issues.&amp;nbsp; When i add the measure to the filter on the card i have for "passed" % calculation.&amp;nbsp; I had to add a slicer for date - month/year to pull out data on specific time frame.&lt;/P&gt;&lt;P&gt;Reality - i have the following tables:&lt;/P&gt;&lt;P&gt;Activity table and when the activity occurred&lt;/P&gt;&lt;P&gt;Master table - provides link to user detailed information (most measures are created under this table&lt;/P&gt;&lt;P&gt;Then each table that now has a different group list to find understand that groups data.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would need to scrub my pbix file, as it contains sensitive info.&amp;nbsp; All tables are have the same userID as the main key for linking.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;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.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jul 2020 21:37:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-OUT-names-from-a-separate-table/m-p/1239671#M20315</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-07-21T21:37:12Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering OUT names from a separate table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-OUT-names-from-a-separate-table/m-p/1240488#M20341</link>
      <description>&lt;P&gt;It's hard for me to completely oversee, since the model is not known.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;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.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;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.&lt;/P&gt;</description>
      <pubDate>Wed, 22 Jul 2020 06:42:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-OUT-names-from-a-separate-table/m-p/1240488#M20341</guid>
      <dc:creator>danielkrol</dc:creator>
      <dc:date>2020-07-22T06:42:53Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering OUT names from a separate table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-OUT-names-from-a-separate-table/m-p/1245887#M20444</link>
      <description>&lt;P&gt;So i'm thinking, is there a way to build a new table from my master table but not include the group?&lt;/P&gt;</description>
      <pubDate>Thu, 23 Jul 2020 17:34:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-OUT-names-from-a-separate-table/m-p/1245887#M20444</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-07-23T17:34:18Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering OUT names from a separate table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-OUT-names-from-a-separate-table/m-p/1246285#M20450</link>
      <description>&lt;P&gt;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.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Jul 2020 20:46:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-OUT-names-from-a-separate-table/m-p/1246285#M20450</guid>
      <dc:creator>danielkrol</dc:creator>
      <dc:date>2020-07-23T20:46:27Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering OUT names from a separate table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-OUT-names-from-a-separate-table/m-p/1247326#M20480</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can use EXCEPT function to do this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.youtube.com/watch?v=TL81opk59aE" target="_blank"&gt;https://www.youtube.com/watch?v=TL81opk59aE&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://dax.guide/except/" target="_blank"&gt;https://dax.guide/except/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.powerbi.com/t5/Desktop/How-to-display-Intersect-and-except-data-of-two-tables/td-p/159534" target="_blank"&gt;https://community.powerbi.com/t5/Desktop/How-to-display-Intersect-and-except-data-of-two-tables/td-p/159534&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;BR /&gt;Harsh Nathani&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Appreciate with a Kudos!! (Click the Thumbs Up Button)&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;Did I answer your question? Mark my post as a solution!&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jul 2020 06:53:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filtering-OUT-names-from-a-separate-table/m-p/1247326#M20480</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-07-24T06:53:58Z</dc:date>
    </item>
  </channel>
</rss>

