<?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: Generate dynamic exclude table in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Generate-dynamic-exclude-table/m-p/838046#M6281</link>
    <description>&lt;P&gt;Thank you! I solved it by using a measure in a table.&lt;/P&gt;</description>
    <pubDate>Wed, 06 Nov 2019 01:21:02 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2019-11-06T01:21:02Z</dc:date>
    <item>
      <title>Generate dynamic exclude table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Generate-dynamic-exclude-table/m-p/830858#M5999</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to generate a dynamic table shows the inverted result of a slicer.&lt;/P&gt;&lt;P&gt;In order to obtain this, I used the follow measures/tables:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;The original table for which I am trying to make the inverted selection&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Cars_table&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Table for slicer&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Unique_brand = SUMMARIZE('Cars_table','Cars_table'[brand])&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;List of all selected values&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;selection_list =&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;VAR part_1 = CONCATENATE(UNICHAR(34),UNICHAR(44))&lt;/P&gt;&lt;P&gt;VAR part_2 = CONCATENATE(part_1, UNICHAR(34))&lt;/P&gt;&lt;P&gt;VAR core = CONCATENATEX(Unique_brand, [brand], part_2)&lt;/P&gt;&lt;P&gt;VAR with_lead = CONCATENATE(UNICHAR(34), core)&lt;/P&gt;&lt;P&gt;VAR with_tail = CONCATENATE(with_lead, UNICHAR(34))&lt;/P&gt;&lt;P&gt;RETURN with_tail&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Table with result I want to obtain&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Result_table= FILTER(&lt;/P&gt;&lt;P&gt;ALL('Cars_table'),NOT CONTAINSROW({selection_list}, 'Cars_table'[brand]))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, the result table does not seem to interpret the 'selection_list'. There are no errors, but there is no filtering going on either...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help would be greatly appreciated.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Oct 2019 06:02:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Generate-dynamic-exclude-table/m-p/830858#M5999</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-10-29T06:02:06Z</dc:date>
    </item>
    <item>
      <title>Re: Generate dynamic exclude table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Generate-dynamic-exclude-table/m-p/831038#M6001</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;Tables and Columns are not dynamic therefore you will not see an impact from slicer selection.&lt;/P&gt;
&lt;P&gt;You can, however, use the result table in a Measure.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV&gt;Best Regards,&lt;BR /&gt;Mariusz&lt;BR /&gt;&lt;BR /&gt;If this post &lt;STRONG&gt;helps&lt;/STRONG&gt;, then please consider &lt;STRONG&gt;&lt;I&gt;Accepting it as the solution&lt;/I&gt;&lt;/STRONG&gt;.&lt;BR /&gt;&lt;BR /&gt;Please feel free to connect with me.&lt;BR /&gt;&lt;A href="https://www.linkedin.com/in/mariusz-repczynski-065a7362/" rel="nofollow noopener noreferrer" target="_blank"&gt;&lt;IMG src="https://ip1.i.lithium.com/1232d707bb27fc4afa3b81cd0702c478b6f7aced/68747470733a2f2f7374617469632e6c6963646e2e636f6d2f736364732f636f6d6d6f6e2f752f696d616765732f6c6f676f732f6c696e6b6564696e2f6c6f676f5f6c696e6b6564696e5f39337832315f76322e706e67" border="0" alt="Mariusz Repczynski" /&gt;&lt;/A&gt;&lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Oct 2019 08:34:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Generate-dynamic-exclude-table/m-p/831038#M6001</guid>
      <dc:creator>Mariusz</dc:creator>
      <dc:date>2019-10-29T08:34:59Z</dc:date>
    </item>
    <item>
      <title>Re: Generate dynamic exclude table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Generate-dynamic-exclude-table/m-p/833638#M6078</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Can you create a small data sample and expected outcome?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV&gt;Best Regards,&lt;BR /&gt;Mariusz&lt;BR /&gt;&lt;BR /&gt;If this post &lt;STRONG&gt;helps&lt;/STRONG&gt;, then please consider &lt;STRONG&gt;&lt;I&gt;Accepting it as the solution&lt;/I&gt;&lt;/STRONG&gt;.&lt;BR /&gt;&lt;BR /&gt;Please feel free to connect with me.&lt;BR /&gt;&lt;A href="https://www.linkedin.com/in/mariusz-repczynski-065a7362/" rel="nofollow noopener noreferrer" target="_blank"&gt;&lt;IMG src="https://ip1.i.lithium.com/1232d707bb27fc4afa3b81cd0702c478b6f7aced/68747470733a2f2f7374617469632e6c6963646e2e636f6d2f736364732f636f6d6d6f6e2f752f696d616765732f6c6f676f732f6c696e6b6564696e2f6c6f676f5f6c696e6b6564696e5f39337832315f76322e706e67" border="0" alt="Mariusz Repczynski" /&gt;&lt;/A&gt;&lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 31 Oct 2019 08:48:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Generate-dynamic-exclude-table/m-p/833638#M6078</guid>
      <dc:creator>Mariusz</dc:creator>
      <dc:date>2019-10-31T08:48:07Z</dc:date>
    </item>
    <item>
      <title>Re: Generate dynamic exclude table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Generate-dynamic-exclude-table/m-p/838046#M6281</link>
      <description>&lt;P&gt;Thank you! I solved it by using a measure in a table.&lt;/P&gt;</description>
      <pubDate>Wed, 06 Nov 2019 01:21:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Generate-dynamic-exclude-table/m-p/838046#M6281</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-11-06T01:21:02Z</dc:date>
    </item>
  </channel>
</rss>

