<?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: Help with ISBLANK function in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-with-ISBLANK-function/m-p/3070804#M106572</link>
    <description>&lt;P&gt;Hi,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="508922" data-lia-user-login="medwards" class="lia-mention lia-mention-user"&gt;medwards&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;You can try the following methods&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Sample data:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Measure:&lt;/SPAN&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;# Tables with no person assigned = 
CALCULATE ( DISTINCTCOUNT ( responsibility[table_id] ),
        FILTER ( ALL ( responsibility ),
            responsibility[role_id] = "Engineer"
                &amp;amp;&amp;amp; ISBLANK ( responsibility[user_id] )
        )
    )&lt;/LI-CODE&gt;
&lt;P&gt;Or&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Measure = 
CALCULATE ( DISTINCTCOUNT ( responsibility[table_id] ),
        FILTER ( ALL ( responsibility ),
            responsibility[role_id] = "Engineer"
                &amp;amp;&amp;amp;  responsibility[user_id] = BLANK()
        )
    )&lt;/LI-CODE&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Is this the result you expect?&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 _Charlotte&lt;/P&gt;
&lt;P&gt;If this post&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;helps&lt;/STRONG&gt;, then please consider&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;&lt;EM&gt;Accept it as the solution&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;to help the other members find it more quickly.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 09 Feb 2023 03:19:23 GMT</pubDate>
    <dc:creator>v-zhangti</dc:creator>
    <dc:date>2023-02-09T03:19:23Z</dc:date>
    <item>
      <title>Help with ISBLANK function</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-with-ISBLANK-function/m-p/3069552#M106442</link>
      <description>&lt;P&gt;Hope someone can help with this ISBLANK function:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;# Tables with no person assigned = CALCULATE(DISTINCTCOUNT(responsibility[table_id]),(responsibility[role_id]="Engineer" &amp;amp;&amp;amp; ISBLANK(responsibility[user_id])))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It is currently not returning a number, so I must have done something wrong here.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Appreciate any help!&lt;/P&gt;</description>
      <pubDate>Wed, 08 Feb 2023 16:01:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-with-ISBLANK-function/m-p/3069552#M106442</guid>
      <dc:creator>medwards</dc:creator>
      <dc:date>2023-02-08T16:01:35Z</dc:date>
    </item>
    <item>
      <title>Re: Help with ISBLANK function</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-with-ISBLANK-function/m-p/3069762#M106467</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="508922" data-lia-user-login="medwards" class="lia-mention lia-mention-user"&gt;medwards&lt;/a&gt; , seem fine, need data to test&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try like this&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;# Tables with no person assigned = CALCULATE(DISTINCTCOUNT(responsibility[table_id]),Filter(responsibility, responsibility[role_id]="Engineer" &amp;amp;&amp;amp; ISBLANK(responsibility[user_id])))&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this does not help&lt;BR /&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, 08 Feb 2023 17:10:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-with-ISBLANK-function/m-p/3069762#M106467</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2023-02-08T17:10:08Z</dc:date>
    </item>
    <item>
      <title>Re: Help with ISBLANK function</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-with-ISBLANK-function/m-p/3070804#M106572</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="508922" data-lia-user-login="medwards" class="lia-mention lia-mention-user"&gt;medwards&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;You can try the following methods&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Sample data:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Measure:&lt;/SPAN&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;# Tables with no person assigned = 
CALCULATE ( DISTINCTCOUNT ( responsibility[table_id] ),
        FILTER ( ALL ( responsibility ),
            responsibility[role_id] = "Engineer"
                &amp;amp;&amp;amp; ISBLANK ( responsibility[user_id] )
        )
    )&lt;/LI-CODE&gt;
&lt;P&gt;Or&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Measure = 
CALCULATE ( DISTINCTCOUNT ( responsibility[table_id] ),
        FILTER ( ALL ( responsibility ),
            responsibility[role_id] = "Engineer"
                &amp;amp;&amp;amp;  responsibility[user_id] = BLANK()
        )
    )&lt;/LI-CODE&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Is this the result you expect?&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 _Charlotte&lt;/P&gt;
&lt;P&gt;If this post&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;helps&lt;/STRONG&gt;, then please consider&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;&lt;EM&gt;Accept it as the solution&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;to help the other members find it more quickly.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Feb 2023 03:19:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-with-ISBLANK-function/m-p/3070804#M106572</guid>
      <dc:creator>v-zhangti</dc:creator>
      <dc:date>2023-02-09T03:19:23Z</dc:date>
    </item>
    <item>
      <title>Re: Help with ISBLANK function</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-with-ISBLANK-function/m-p/3072689#M106727</link>
      <description>&lt;P&gt;Thanks for the various solutions. For some reason, the formulas are not capturing the blank values. I'm trying different fields besides user_id like user_lastname but still not recognizing blanks. Very strange&lt;/P&gt;</description>
      <pubDate>Thu, 09 Feb 2023 17:35:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-with-ISBLANK-function/m-p/3072689#M106727</guid>
      <dc:creator>medwards</dc:creator>
      <dc:date>2023-02-09T17:35:47Z</dc:date>
    </item>
    <item>
      <title>Re: Help with ISBLANK function</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-with-ISBLANK-function/m-p/3083042#M107561</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="508922" data-lia-user-login="medwards" class="lia-mention lia-mention-user"&gt;medwards&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Can you provide &lt;/SPAN&gt;&lt;SPAN&gt;s&lt;/SPAN&gt;&lt;SPAN&gt;ample data for testing? Sensitive information can be removed in advance. What kind of expected results do you expect? You can also show it with pictures or Excel. I look forward to your response.&lt;/SPAN&gt;&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 _Charlotte&lt;/P&gt;
&lt;P&gt;If this post&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;helps&lt;/STRONG&gt;, then please consider&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;&lt;EM&gt;Accept it as the solution&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;to help the other members find it more quickly.&lt;/P&gt;</description>
      <pubDate>Thu, 16 Feb 2023 09:26:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-with-ISBLANK-function/m-p/3083042#M107561</guid>
      <dc:creator>v-zhangti</dc:creator>
      <dc:date>2023-02-16T09:26:31Z</dc:date>
    </item>
  </channel>
</rss>

