<?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: Count blank informatons and no Blank informations in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-blank-informatons-and-no-Blank-informations/m-p/2288801#M56201</link>
    <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="343431" data-lia-user-login="ValtteriN" class="lia-mention lia-mention-user"&gt;ValtteriN&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks !!&lt;/P&gt;</description>
    <pubDate>Tue, 18 Jan 2022 12:18:46 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2022-01-18T12:18:46Z</dc:date>
    <item>
      <title>Count blank informatons and no Blank informations</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-blank-informatons-and-no-Blank-informations/m-p/2279432#M55728</link>
      <description>&lt;P&gt;Hello, friends&lt;/P&gt;&lt;P&gt;I need your help, i need a measure that count blank values and no blank values in a data range, for example:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Blank is red and no blank is green, i need to count blank = 9 and no Blank = 1. Have a measure in DAX that help me with this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks a lot!&lt;/P&gt;</description>
      <pubDate>Wed, 12 Jan 2022 12:47:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-blank-informatons-and-no-Blank-informations/m-p/2279432#M55728</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-01-12T12:47:43Z</dc:date>
    </item>
    <item>
      <title>Re: Count blank informatons and no Blank informations</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-blank-informatons-and-no-Blank-informations/m-p/2279462#M55732</link>
      <description>&lt;P&gt;Anonymous&lt;/a&gt;&amp;nbsp;unpivot the data in PQ&lt;/P&gt;</description>
      <pubDate>Wed, 12 Jan 2022 13:05:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-blank-informatons-and-no-Blank-informations/m-p/2279462#M55732</guid>
      <dc:creator>smpa01</dc:creator>
      <dc:date>2022-01-12T13:05:03Z</dc:date>
    </item>
    <item>
      <title>Re: Count blank informatons and no Blank informations</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-blank-informatons-and-no-Blank-informations/m-p/2279490#M55735</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;&lt;BR /&gt;Here is one way to do this:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;DAX:&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;CountBlank = &lt;/SPAN&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;COUNTROWS&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;NullToZero&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;SPAN&gt;ISBLANK&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;NullToZero[Data]&lt;/SPAN&gt;&lt;SPAN&gt;))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;CountNotBlank = &lt;/SPAN&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;COUNTROWS&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;NullToZero&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;SPAN&gt;NullToZero[Data]&lt;/SPAN&gt;&lt;SPAN&gt;&amp;lt;&amp;gt;&lt;/SPAN&gt;&lt;SPAN&gt;BLANK&lt;/SPAN&gt;&lt;SPAN&gt;())&lt;BR /&gt;&lt;BR /&gt;The basic idea is the one shown in my example. To make it work in your context you might need to add ALL to filters and maybe use variables.&lt;BR /&gt;&lt;BR /&gt;I hope this post helps to solve your issue and if it does consider accepting it as a solution and giving the post a thumbs up!&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 12 Jan 2022 13:15:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-blank-informatons-and-no-Blank-informations/m-p/2279490#M55735</guid>
      <dc:creator>ValtteriN</dc:creator>
      <dc:date>2022-01-12T13:15:03Z</dc:date>
    </item>
    <item>
      <title>Re: Count blank informatons and no Blank informations</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-blank-informatons-and-no-Blank-informations/m-p/2288801#M56201</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="343431" data-lia-user-login="ValtteriN" class="lia-mention lia-mention-user"&gt;ValtteriN&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks !!&lt;/P&gt;</description>
      <pubDate>Tue, 18 Jan 2022 12:18:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-blank-informatons-and-no-Blank-informations/m-p/2288801#M56201</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-01-18T12:18:46Z</dc:date>
    </item>
  </channel>
</rss>

