<?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 Filter CONCATENATEX command that every value just appears one time in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-CONCATENATEX-command-that-every-value-just-appears-one/m-p/1402164#M25829</link>
    <description>&lt;P&gt;Hi people,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have the following command:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;CONCATENATEX(FILTER('BaseData','BaseData'[OrderNumber]=EARLIER('BaseData'[OrderNumber])),'BaseData'[Team]," ")&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Which shows of this result in a collumn:&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;My Problem is, that I want every value "A", "B", "C", "D" just one time in the s_t column if it appears.&amp;nbsp;&lt;/P&gt;&lt;P&gt;For example in the first row: there should be just one "A" in the s_t column.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;or in the row where the "UnderOrderNumber" is "4", the row in the s_t colum should be "B C D"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm glad for any help, thanks in advance!&lt;/P&gt;</description>
    <pubDate>Tue, 29 Sep 2020 14:42:33 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2020-09-29T14:42:33Z</dc:date>
    <item>
      <title>Filter CONCATENATEX command that every value just appears one time</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-CONCATENATEX-command-that-every-value-just-appears-one/m-p/1402164#M25829</link>
      <description>&lt;P&gt;Hi people,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have the following command:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;CONCATENATEX(FILTER('BaseData','BaseData'[OrderNumber]=EARLIER('BaseData'[OrderNumber])),'BaseData'[Team]," ")&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Which shows of this result in a collumn:&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;My Problem is, that I want every value "A", "B", "C", "D" just one time in the s_t column if it appears.&amp;nbsp;&lt;/P&gt;&lt;P&gt;For example in the first row: there should be just one "A" in the s_t column.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;or in the row where the "UnderOrderNumber" is "4", the row in the s_t colum should be "B C D"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm glad for any help, thanks in advance!&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 14:42:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-CONCATENATEX-command-that-every-value-just-appears-one/m-p/1402164#M25829</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-09-29T14:42:33Z</dc:date>
    </item>
    <item>
      <title>Re: Filter CONCATENATEX command that every value just appears one time</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-CONCATENATEX-command-that-every-value-just-appears-one/m-p/1402217#M25830</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt; , Not tested, But try like &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;CONCATENATEX(distinct(FILTER('BaseData','BaseData'[OrderNumber]=EARLIER('BaseData'[OrderNumber]))),'BaseData'[Team]," ")&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 14:55:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-CONCATENATEX-command-that-every-value-just-appears-one/m-p/1402217#M25830</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2020-09-29T14:55:57Z</dc:date>
    </item>
    <item>
      <title>Re: Filter CONCATENATEX command that every value just appears one time</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-CONCATENATEX-command-that-every-value-just-appears-one/m-p/1402340#M25836</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="148838" data-lia-user-login="amitchandak" class="lia-mention lia-mention-user"&gt;amitchandak&lt;/a&gt; it shows a&amp;nbsp; circular dependency.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Doesn't work unfortunatley..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I just read, that DISTINCT is a way to don't create a circular dependencys in general..&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Do you have an idea to bypass this error?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 15:36:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-CONCATENATEX-command-that-every-value-just-appears-one/m-p/1402340#M25836</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-09-29T15:36:10Z</dc:date>
    </item>
    <item>
      <title>Re: Filter CONCATENATEX command that every value just appears one time</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-CONCATENATEX-command-that-every-value-just-appears-one/m-p/1403146#M25854</link>
      <description>&lt;P&gt;Anonymous&lt;/a&gt; ,Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 01:50:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-CONCATENATEX-command-that-every-value-just-appears-one/m-p/1403146#M25854</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2020-09-30T01:50:52Z</dc:date>
    </item>
    <item>
      <title>Re: Filter CONCATENATEX command that every value just appears one time</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-CONCATENATEX-command-that-every-value-just-appears-one/m-p/1403685#M25866</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="148838" data-lia-user-login="amitchandak" class="lia-mention lia-mention-user"&gt;amitchandak&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;here is a data sample:&amp;nbsp;&lt;A href="https://workupload.com/file/uRZtYz5jRCA" target="_self"&gt;sample.pbix&amp;nbsp;&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the help!&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 14:05:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-CONCATENATEX-command-that-every-value-just-appears-one/m-p/1403685#M25866</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-09-30T14:05:37Z</dc:date>
    </item>
  </channel>
</rss>

