<?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 DAX formula calculated with multiple FILTER in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula-calculated-with-multiple-FILTER/m-p/2799117#M88027</link>
    <description>&lt;P&gt;I'm looking for a formula that will count the number of rows that meets the following requirements;&lt;/P&gt;&lt;P&gt;- The number of invoices with the same “Number” must be added together.&lt;/P&gt;&lt;P&gt;- Only the invoices that are either “Volledig verrekend” or “Afgeboekt” may be included in the count (Column Variety)&lt;/P&gt;&lt;P&gt;- If possible, I also want to add this requirement: the number of invoices that have one unique “Number” of which the sum of “Amount” is 0.&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;This is what i want ass output:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 27 Sep 2022 08:37:21 GMT</pubDate>
    <dc:creator>angelikakolacz</dc:creator>
    <dc:date>2022-09-27T08:37:21Z</dc:date>
    <item>
      <title>DAX formula calculated with multiple FILTER</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula-calculated-with-multiple-FILTER/m-p/2799117#M88027</link>
      <description>&lt;P&gt;I'm looking for a formula that will count the number of rows that meets the following requirements;&lt;/P&gt;&lt;P&gt;- The number of invoices with the same “Number” must be added together.&lt;/P&gt;&lt;P&gt;- Only the invoices that are either “Volledig verrekend” or “Afgeboekt” may be included in the count (Column Variety)&lt;/P&gt;&lt;P&gt;- If possible, I also want to add this requirement: the number of invoices that have one unique “Number” of which the sum of “Amount” is 0.&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;This is what i want ass output:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Sep 2022 08:37:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula-calculated-with-multiple-FILTER/m-p/2799117#M88027</guid>
      <dc:creator>angelikakolacz</dc:creator>
      <dc:date>2022-09-27T08:37:21Z</dc:date>
    </item>
    <item>
      <title>Re: DAX formula calculated with multiple FILTER</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula-calculated-with-multiple-FILTER/m-p/2802258#M88210</link>
      <description>&lt;P&gt;Hi ,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You may try this Calculated column.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Catgory =
VAR num =
    CALCULATE (
        COUNT ( 'Table'[Number] ),
        FILTER (
            ALLEXCEPT ( 'Table', 'Table'[Number] ),
            'Table'[Variety] IN { "Volledig verrekend", "Afgeboekt" }
        )
    )
RETURN
    IF ( num &amp;lt;= 1, 0, num )&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The result looks like this.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If there is any post helps, then please consider&lt;STRONG&gt; Accept it as the solution&lt;/STRONG&gt; to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please let me know. Thanks a lot!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Community Support Team _ Caiyun&lt;/P&gt;</description>
      <pubDate>Wed, 28 Sep 2022 09:09:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula-calculated-with-multiple-FILTER/m-p/2802258#M88210</guid>
      <dc:creator>v-cazheng-msft</dc:creator>
      <dc:date>2022-09-28T09:09:11Z</dc:date>
    </item>
  </channel>
</rss>

