<?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 out 2 options from a list, and count the remainder in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-filter-out-2-options-from-a-list-and-count-the-remainder/m-p/1039691#M13904</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;Try creating this measure:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Qtd Cases = CALCULATE(COUNT('Table'[Support Type]); FILTER(ALL('Table'); NOT 'Table'[Support Type] IN {"Critical Failure";"Non - Critical Failure"}))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Ricardo&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
    <pubDate>Tue, 21 Apr 2020 15:32:19 GMT</pubDate>
    <dc:creator>camargos88</dc:creator>
    <dc:date>2020-04-21T15:32:19Z</dc:date>
    <item>
      <title>How to filter out 2 options from a list, and count the remainder</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-filter-out-2-options-from-a-list-and-count-the-remainder/m-p/1039630#M13899</link>
      <description>&lt;P&gt;I have a list of case record types. I need a total # of cases that does not include 2 values (Cricital Failure and Non - Critical Failure). I want to be able to total the cases that do not include failures, in the example below, the total would be 3. I have stumbled quite a few times trying to figure this out. Any suggestions?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;STRONG&gt;Case Number&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;Date/Time Opened&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;Support Type&lt;/STRONG&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;123456&lt;/TD&gt;&lt;TD&gt;1/1/19&lt;/TD&gt;&lt;TD&gt;Critical Failure&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;123457&lt;/TD&gt;&lt;TD&gt;1/1/19&lt;/TD&gt;&lt;TD&gt;Critical Failure&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;123458&lt;/TD&gt;&lt;TD&gt;1/1/19&lt;/TD&gt;&lt;TD&gt;Data&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;123459&lt;/TD&gt;&lt;TD&gt;1/2/19&lt;/TD&gt;&lt;TD&gt;Account Maintenance&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;123460&lt;/TD&gt;&lt;TD&gt;1/3/19&lt;/TD&gt;&lt;TD&gt;Non - Critical Failure&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;123461&lt;/TD&gt;&lt;TD&gt;1/4/19&lt;/TD&gt;&lt;TD&gt;Product/Technical&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description>
      <pubDate>Tue, 21 Apr 2020 15:13:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-filter-out-2-options-from-a-list-and-count-the-remainder/m-p/1039630#M13899</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-04-21T15:13:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter out 2 options from a list, and count the remainder</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-filter-out-2-options-from-a-list-and-count-the-remainder/m-p/1039691#M13904</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;Try creating this measure:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Qtd Cases = CALCULATE(COUNT('Table'[Support Type]); FILTER(ALL('Table'); NOT 'Table'[Support Type] IN {"Critical Failure";"Non - Critical Failure"}))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Ricardo&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 21 Apr 2020 15:32:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-filter-out-2-options-from-a-list-and-count-the-remainder/m-p/1039691#M13904</guid>
      <dc:creator>camargos88</dc:creator>
      <dc:date>2020-04-21T15:32:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter out 2 options from a list, and count the remainder</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-filter-out-2-options-from-a-list-and-count-the-remainder/m-p/1039874#M13910</link>
      <description>&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;You can use the below measure.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&lt;BR /&gt;Count of Cases = &lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;COUNTROWS(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;FILTER(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Data16,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;NOT(Data16[Support Type] IN ({"Critical Failure","Non - Critical Failure"})&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Data16 will correspond to the Name of your Table.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&lt;img /&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 21 Apr 2020 16:47:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-filter-out-2-options-from-a-list-and-count-the-remainder/m-p/1039874#M13910</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-04-21T16:47:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter out 2 options from a list, and count the remainder</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-filter-out-2-options-from-a-list-and-count-the-remainder/m-p/1298424#M22448</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;Please let me know if the solution workd for you.&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;</description>
      <pubDate>Sat, 15 Aug 2020 21:35:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-filter-out-2-options-from-a-list-and-count-the-remainder/m-p/1298424#M22448</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-08-15T21:35:43Z</dc:date>
    </item>
  </channel>
</rss>

