<?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: Filter only on subset of Data in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-only-on-subset-of-Data/m-p/1175850#M18258</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 try creating 2 slicers on your report:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Category&lt;/LI&gt;&lt;LI&gt;Quality&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Try placing "Category" slicer before "Quality" slicer.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now, suppose you select "a" in CATEGORY slicer, then in QUALITY slicer should have respective values in it for this category. Then select a value from QUALITY slicer to get the desired result.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Pragati&lt;/P&gt;</description>
    <pubDate>Tue, 23 Jun 2020 10:14:39 GMT</pubDate>
    <dc:creator>Pragati11</dc:creator>
    <dc:date>2020-06-23T10:14:39Z</dc:date>
    <item>
      <title>Filter only on subset of Data</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-only-on-subset-of-Data/m-p/1175778#M18256</link>
      <description>&lt;P&gt;I have the following base table with category and quality:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;I would like to have two filters for the quality values, one for category a and one for b. For example I'd like to filter for category a quality 2 and category b quality 1 and show the result in one table. Or be able to filter for a specific quality for category a and do not filter b at all.&lt;/P&gt;&lt;P&gt;I tried splitting the table and rejoining them with a calculated table but that doesn't seem to update on slicer change.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The result is supposed to look something like the following. I have slicers for each category and the result table basically is the union of those above which changes if I change the slicer values.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I'm relatively new to Power BI so I might have missed something fundamental, but I cannot, yet, figure it out. Any help is greatly appreciated!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jun 2020 12:40:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-only-on-subset-of-Data/m-p/1175778#M18256</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-06-23T12:40:13Z</dc:date>
    </item>
    <item>
      <title>Re: Filter only on subset of Data</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-only-on-subset-of-Data/m-p/1175850#M18258</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 try creating 2 slicers on your report:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Category&lt;/LI&gt;&lt;LI&gt;Quality&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Try placing "Category" slicer before "Quality" slicer.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now, suppose you select "a" in CATEGORY slicer, then in QUALITY slicer should have respective values in it for this category. Then select a value from QUALITY slicer to get the desired result.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Pragati&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jun 2020 10:14:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-only-on-subset-of-Data/m-p/1175850#M18258</guid>
      <dc:creator>Pragati11</dc:creator>
      <dc:date>2020-06-23T10:14:39Z</dc:date>
    </item>
    <item>
      <title>Re: Filter only on subset of Data</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-only-on-subset-of-Data/m-p/1175854#M18259</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 Slicers to show these Values. Pull 2 Slicers from the Visualization Pane and you can filter them through the slicers.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Incase you need to create a &lt;STRONG&gt;new table&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;New Table =&amp;nbsp;&lt;SPAN&gt;&amp;nbsp;FILTER('Table','Table'[Category] = "a" &amp;amp;&amp;amp; 'Table'[Quality] = 2 || 'Table'[Category] = "b" &amp;amp;&amp;amp; 'Table'[Quality] = 1)&lt;/SPAN&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;Did I answer your question? Mark my post as a solution! Appreciate with a Kudos!! (Click the Thumbs Up Button)&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jun 2020 10:16:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-only-on-subset-of-Data/m-p/1175854#M18259</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-06-23T10:16:14Z</dc:date>
    </item>
    <item>
      <title>Re: Filter only on subset of Data</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-only-on-subset-of-Data/m-p/1176467#M18278</link>
      <description>&lt;P&gt;Hi Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="81077" data-lia-user-login="Pragati11" class="lia-mention lia-mention-user"&gt;Pragati11&lt;/a&gt;&amp;nbsp;thanks for the quick reply. I updated the question to make it a bit more clear. The table looks good but I'd like to choose the values within the report and don't hardcode them in the table code.&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jun 2020 12:43:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-only-on-subset-of-Data/m-p/1176467#M18278</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-06-23T12:43:23Z</dc:date>
    </item>
    <item>
      <title>Re: Filter only on subset of Data</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-only-on-subset-of-Data/m-p/1177410#M18300</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Your Slicer Quality is one column in your table.&amp;nbsp;&lt;/P&gt;&lt;P&gt;You cannot segregate the Slicer by Category. The selection is your Slicer tells the engine to filter table by the selected quality value.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you let me know what is the end objective of this problem&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Harsh Nathani&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jun 2020 19:33:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-only-on-subset-of-Data/m-p/1177410#M18300</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-06-23T19:33:42Z</dc:date>
    </item>
  </channel>
</rss>

