<?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: how to filter array column from another array column in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/how-to-filter-array-column-from-another-array-column/m-p/3690308#M143402</link>
    <description>&lt;P&gt;Hi. Good try.&lt;BR /&gt;Your solution work when you need exclude column with one variable.&lt;BR /&gt;In my case it's array column = multiple variable in one cell&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&amp;nbsp;it is not works&lt;/P&gt;</description>
    <pubDate>Fri, 09 Feb 2024 08:35:01 GMT</pubDate>
    <dc:creator>YaroslavSheles</dc:creator>
    <dc:date>2024-02-09T08:35:01Z</dc:date>
    <item>
      <title>how to filter array column from another array column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/how-to-filter-array-column-from-another-array-column/m-p/3688765#M143315</link>
      <description>&lt;P&gt;Hi!&lt;BR /&gt;How to filter column 2 from column 1? the result should be in column 3.&lt;BR /&gt;In each row, the length of arrays is different.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Feb 2024 15:24:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/how-to-filter-array-column-from-another-array-column/m-p/3688765#M143315</guid>
      <dc:creator>YaroslavSheles</dc:creator>
      <dc:date>2024-02-08T15:24:34Z</dc:date>
    </item>
    <item>
      <title>Re: how to filter array column from another array column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/how-to-filter-array-column-from-another-array-column/m-p/3688792#M143317</link>
      <description>&lt;P&gt;&lt;SPAN&gt;I tried this&lt;BR /&gt;&lt;BR /&gt;DistinctValuesArrayColumn1 =&lt;BR /&gt;DISTINCT(FILTER(RELATEDTABLE(reviews_reviews),&lt;BR /&gt;NOT(ISBLANK(reviews_reviews[Assigned]))),&lt;BR /&gt;reviews_reviews[Next_Action])&lt;BR /&gt;&lt;/SPAN&gt;&lt;BR /&gt;the issue is:&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Too many arguments were passed to the DISTINCT function. The maximum argument count for the function is 1.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Feb 2024 15:33:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/how-to-filter-array-column-from-another-array-column/m-p/3688792#M143317</guid>
      <dc:creator>YaroslavSheles</dc:creator>
      <dc:date>2024-02-08T15:33:46Z</dc:date>
    </item>
    <item>
      <title>Re: how to filter array column from another array column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/how-to-filter-array-column-from-another-array-column/m-p/3690188#M143395</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="335838" data-lia-user-login="YaroslavSheles" class="lia-mention lia-mention-user"&gt;YaroslavSheles&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For your question, I modified your dax.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;"reviews_reviews"&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Create a measure.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Measure = 
    CALCULATE(
        MAX('reviews_reviews'[Next_Action]), 
        FILTER(
            RELATEDTABLE('reviews_reviews'), 
            'reviews_reviews'[Assigned] &amp;lt;&amp;gt; ""
        )
    )&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is the result.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P class="" style="background: white;"&gt;&lt;SPAN&gt;If you're still having problems, provide some dummy data and the desired outcome. It is best presented in the form of a table.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Nono Chen&lt;/P&gt;
&lt;P&gt;If this &lt;STRONG&gt;&lt;EM&gt;post&amp;nbsp;&lt;/EM&gt;&lt;/STRONG&gt;helps, then please consider&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;&lt;STRONG&gt;&lt;EM&gt;Accept it as the solution&amp;nbsp;&lt;/EM&gt;&lt;/STRONG&gt;&lt;/EM&gt;&lt;/STRONG&gt;to help the other members find it more quickly.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Feb 2024 07:32:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/how-to-filter-array-column-from-another-array-column/m-p/3690188#M143395</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-02-09T07:32:05Z</dc:date>
    </item>
    <item>
      <title>Re: how to filter array column from another array column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/how-to-filter-array-column-from-another-array-column/m-p/3690308#M143402</link>
      <description>&lt;P&gt;Hi. Good try.&lt;BR /&gt;Your solution work when you need exclude column with one variable.&lt;BR /&gt;In my case it's array column = multiple variable in one cell&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&amp;nbsp;it is not works&lt;/P&gt;</description>
      <pubDate>Fri, 09 Feb 2024 08:35:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/how-to-filter-array-column-from-another-array-column/m-p/3690308#M143402</guid>
      <dc:creator>YaroslavSheles</dc:creator>
      <dc:date>2024-02-09T08:35:01Z</dc:date>
    </item>
  </channel>
</rss>

