<?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: Counting blank fields based on another column in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Counting-blank-fields-based-on-another-column/m-p/4735191#M181374</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="629920" data-lia-user-login="mgaut341" class="lia-mention lia-mention-user"&gt;mgaut341&lt;/a&gt;&amp;nbsp;please try this&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Blank Status with Appt =&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;COUNTROWS&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Sheet4'&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;NOT&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;'Sheet4'&lt;/SPAN&gt;&lt;SPAN&gt;[Appt Date/Time]&lt;/SPAN&gt;&lt;SPAN&gt;)),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;ISBLANK&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Sheet4'&lt;/SPAN&gt;&lt;SPAN&gt;[Status]&lt;/SPAN&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;</description>
    <pubDate>Tue, 17 Jun 2025 20:50:07 GMT</pubDate>
    <dc:creator>techies</dc:creator>
    <dc:date>2025-06-17T20:50:07Z</dc:date>
    <item>
      <title>Counting blank fields based on another column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Counting-blank-fields-based-on-another-column/m-p/4731776#M181257</link>
      <description>&lt;P&gt;I am trying to count how many blank cells I have in my 'status' column when my 'appt date/time' field has a value in the cell. I have tried the following formula&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;COUNT&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'CCHHS Imaging &amp;amp; Procedure'&lt;/SPAN&gt;&lt;SPAN&gt;[Appt Date/Time]&lt;/SPAN&gt;&lt;SPAN&gt;), &lt;/SPAN&gt;&lt;SPAN&gt;FILTER&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'CCHHS Imaging &amp;amp; Procedure'&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;'CCHHS Imaging &amp;amp; Procedure'&lt;/SPAN&gt;&lt;SPAN&gt;[Status]&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;""&lt;/SPAN&gt;&lt;SPAN&gt;))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;but it gives me the total number of blanks in the Status column regardless of if the Appt Date/Time column has a value&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Jun 2025 15:48:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Counting-blank-fields-based-on-another-column/m-p/4731776#M181257</guid>
      <dc:creator>mgaut341</dc:creator>
      <dc:date>2025-06-13T15:48:50Z</dc:date>
    </item>
    <item>
      <title>Re: Counting blank fields based on another column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Counting-blank-fields-based-on-another-column/m-p/4731784#M181258</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="629920" data-lia-user-login="mgaut341" class="lia-mention lia-mention-user"&gt;mgaut341&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To count how many rows have a blank Status while the Appt Date/Time is not blank, you need to use COUNTROWS with a FILTER that checks both conditions. Your current formula only checks if Status is blank, which includes rows even when Appt Date/Time is also blank. The correct DAX formula is:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;CALCULATE(
    COUNTROWS('CCHHS Imaging &amp;amp; Procedure'),
    FILTER(
        'CCHHS Imaging &amp;amp; Procedure',
        NOT(ISBLANK('CCHHS Imaging &amp;amp; Procedure'[Appt Date/Time])) &amp;amp;&amp;amp;
        ISBLANK('CCHHS Imaging &amp;amp; Procedure'[Status])
    )
)
&lt;/LI-CODE&gt;
&lt;P&gt;This will return the number of rows where Status is blank and Appt Date/Time has a value.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;/P&gt;</description>
      <pubDate>Fri, 13 Jun 2025 15:54:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Counting-blank-fields-based-on-another-column/m-p/4731784#M181258</guid>
      <dc:creator>DataNinja777</dc:creator>
      <dc:date>2025-06-13T15:54:38Z</dc:date>
    </item>
    <item>
      <title>Re: Counting blank fields based on another column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Counting-blank-fields-based-on-another-column/m-p/4731786#M181259</link>
      <description>&lt;P&gt;Unfortunately, that tells me I have 0 blank cells which is not accurate as I have 76&lt;/P&gt;</description>
      <pubDate>Fri, 13 Jun 2025 16:00:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Counting-blank-fields-based-on-another-column/m-p/4731786#M181259</guid>
      <dc:creator>mgaut341</dc:creator>
      <dc:date>2025-06-13T16:00:53Z</dc:date>
    </item>
    <item>
      <title>Re: Counting blank fields based on another column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Counting-blank-fields-based-on-another-column/m-p/4733258#M181304</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="629920" data-lia-user-login="mgaut341" class="lia-mention lia-mention-user"&gt;mgaut341&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Please provide sample PBIX file that covers your issue or question completely&lt;SPAN&gt;, in a usable&lt;SPAN&gt; format (not as a screenshot).&lt;BR /&gt;&lt;SPAN&gt;Do not include sensitive information. Do not include anything that is unrelated to the issue or question.&lt;BR /&gt;&lt;SPAN&gt;Please show the expected outcome based on the sample data you provided.&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Need help uploading data?&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;A class="" title="https://community.fabric.microsoft.com/t5/community-blog/how-to-provide-sample-data-in-the-power-bi-forum/ba-p/963216" href="https://community.fabric.microsoft.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-Forum/ba-p/963216" target="_blank" rel="noreferrer noopener" aria-label="Link https://community.fabric.microsoft.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-..."&gt;https://community.fabric.microsoft.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-...&lt;BR /&gt;&lt;SPAN&gt;Want faster answers? &lt;/SPAN&gt;&lt;/A&gt;&lt;A class="" title="https://community.fabric.microsoft.com/t5/desktop/how-to-get-your-question-answered-quickly/m-p/1447..." href="https://community.fabric.microsoft.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447..." target="_blank" rel="noreferrer noopener" aria-label="Link https://community.fabric.microsoft.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447..."&gt;https://community.fabric.microsoft.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447...&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 16 Jun 2025 09:23:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Counting-blank-fields-based-on-another-column/m-p/4733258#M181304</guid>
      <dc:creator>v-saisrao-msft</dc:creator>
      <dc:date>2025-06-16T09:23:58Z</dc:date>
    </item>
    <item>
      <title>Re: Counting blank fields based on another column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Counting-blank-fields-based-on-another-column/m-p/4734363#M181347</link>
      <description>&lt;P&gt;Please provide the pbix file for inspection&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best&lt;/P&gt;&lt;P&gt;FB&lt;/P&gt;</description>
      <pubDate>Tue, 17 Jun 2025 07:05:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Counting-blank-fields-based-on-another-column/m-p/4734363#M181347</guid>
      <dc:creator>FBergamaschi</dc:creator>
      <dc:date>2025-06-17T07:05:45Z</dc:date>
    </item>
    <item>
      <title>Re: Counting blank fields based on another column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Counting-blank-fields-based-on-another-column/m-p/4734973#M181362</link>
      <description>&lt;P&gt;Does this work?&lt;/P&gt;&lt;P&gt;&lt;!-- StartFragment  --&gt;&lt;A href="https://communityhealthorg-my.sharepoint.com/:x:/r/personal/mgauthier_communityhealth_org/Documents/Documents/No%20Result%20Test.xlsx?d=w35e282a536c34f03b296c8ba151a1722&amp;amp;csf=1&amp;amp;web=1&amp;amp;e=Jabttb" target="_blank"&gt;No Result Test.xlsx&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Jun 2025 15:56:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Counting-blank-fields-based-on-another-column/m-p/4734973#M181362</guid>
      <dc:creator>mgaut341</dc:creator>
      <dc:date>2025-06-17T15:56:44Z</dc:date>
    </item>
    <item>
      <title>Re: Counting blank fields based on another column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Counting-blank-fields-based-on-another-column/m-p/4735191#M181374</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="629920" data-lia-user-login="mgaut341" class="lia-mention lia-mention-user"&gt;mgaut341&lt;/a&gt;&amp;nbsp;please try this&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Blank Status with Appt =&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;COUNTROWS&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Sheet4'&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;NOT&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;'Sheet4'&lt;/SPAN&gt;&lt;SPAN&gt;[Appt Date/Time]&lt;/SPAN&gt;&lt;SPAN&gt;)),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;ISBLANK&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Sheet4'&lt;/SPAN&gt;&lt;SPAN&gt;[Status]&lt;/SPAN&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;</description>
      <pubDate>Tue, 17 Jun 2025 20:50:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Counting-blank-fields-based-on-another-column/m-p/4735191#M181374</guid>
      <dc:creator>techies</dc:creator>
      <dc:date>2025-06-17T20:50:07Z</dc:date>
    </item>
    <item>
      <title>Re: Counting blank fields based on another column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Counting-blank-fields-based-on-another-column/m-p/4735200#M181375</link>
      <description>&lt;P&gt;That shows up as 0, not the 77 I am looking for&lt;/P&gt;</description>
      <pubDate>Tue, 17 Jun 2025 20:56:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Counting-blank-fields-based-on-another-column/m-p/4735200#M181375</guid>
      <dc:creator>mgaut341</dc:creator>
      <dc:date>2025-06-17T20:56:16Z</dc:date>
    </item>
    <item>
      <title>Re: Counting blank fields based on another column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Counting-blank-fields-based-on-another-column/m-p/4735210#M181376</link>
      <description>&lt;P&gt;ok, create this calculated column to see the field is blank&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Status Debug =&lt;BR /&gt;IF(&lt;BR /&gt;ISBLANK('Sheet4'[Status]),&lt;BR /&gt;"True Blank",&lt;BR /&gt;"[" &amp;amp; 'Sheet4'[Status] &amp;amp; "] LEN=" &amp;amp; LEN('Sheet4'[Status])&lt;BR /&gt;)&lt;/P&gt;</description>
      <pubDate>Tue, 17 Jun 2025 21:09:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Counting-blank-fields-based-on-another-column/m-p/4735210#M181376</guid>
      <dc:creator>techies</dc:creator>
      <dc:date>2025-06-17T21:09:43Z</dc:date>
    </item>
    <item>
      <title>Re: Counting blank fields based on another column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Counting-blank-fields-based-on-another-column/m-p/4735212#M181377</link>
      <description>&lt;P&gt;This is my result&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, 17 Jun 2025 21:18:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Counting-blank-fields-based-on-another-column/m-p/4735212#M181377</guid>
      <dc:creator>mgaut341</dc:creator>
      <dc:date>2025-06-17T21:18:29Z</dc:date>
    </item>
    <item>
      <title>Re: Counting blank fields based on another column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Counting-blank-fields-based-on-another-column/m-p/4735218#M181378</link>
      <description>&lt;P&gt;ok please try this&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Blank Status with Appt =&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;COUNTROWS&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Sheet4'&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;FILTER&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;'Sheet4'&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;NOT&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;'Sheet4'&lt;/SPAN&gt;&lt;SPAN&gt;[Appt Date/Time]&lt;/SPAN&gt;&lt;SPAN&gt;)) &amp;amp;&amp;amp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;LEN&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;TRIM&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Sheet4'&lt;/SPAN&gt;&lt;SPAN&gt;[Status]&lt;/SPAN&gt;&lt;SPAN&gt;)) = &lt;/SPAN&gt;&lt;SPAN&gt;0&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; )&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 17 Jun 2025 21:30:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Counting-blank-fields-based-on-another-column/m-p/4735218#M181378</guid>
      <dc:creator>techies</dc:creator>
      <dc:date>2025-06-17T21:30:48Z</dc:date>
    </item>
    <item>
      <title>Re: Counting blank fields based on another column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Counting-blank-fields-based-on-another-column/m-p/4736126#M181402</link>
      <description>&lt;P&gt;Sadly that doesn't give me the correct answer&lt;/P&gt;</description>
      <pubDate>Wed, 18 Jun 2025 14:08:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Counting-blank-fields-based-on-another-column/m-p/4736126#M181402</guid>
      <dc:creator>mgaut341</dc:creator>
      <dc:date>2025-06-18T14:08:19Z</dc:date>
    </item>
    <item>
      <title>Re: Counting blank fields based on another column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Counting-blank-fields-based-on-another-column/m-p/4736984#M181432</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="629920" data-lia-user-login="mgaut341" class="lia-mention lia-mention-user"&gt;mgaut341&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;unable to get the sample data. However, to solve this,&lt;/P&gt;&lt;P&gt;Create a calculated column with below syntax and get a sum.&amp;nbsp;&lt;/P&gt;&lt;P&gt;column = if(and(date/time &amp;lt;&amp;gt; blank()&amp;nbsp; &amp;nbsp;,&amp;nbsp; &amp;nbsp;status = blank())&amp;nbsp; , 1, blank())&lt;/P&gt;&lt;P&gt;this flag column should put 1 in case of status blank and date/time not blank.&amp;nbsp;&lt;/P&gt;&lt;P&gt;then you need to sum it up.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Let me know if this works. Else, share sample data&lt;/P&gt;</description>
      <pubDate>Thu, 19 Jun 2025 07:16:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Counting-blank-fields-based-on-another-column/m-p/4736984#M181432</guid>
      <dc:creator>Rupak_bi</dc:creator>
      <dc:date>2025-06-19T07:16:31Z</dc:date>
    </item>
    <item>
      <title>Re: Counting blank fields based on another column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Counting-blank-fields-based-on-another-column/m-p/4736985#M181433</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="629920" data-lia-user-login="mgaut341" class="lia-mention lia-mention-user"&gt;mgaut341&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;unable to get the sample data. However, to solve this,&lt;/P&gt;&lt;P&gt;Create a calculated column with below syntax and get a sum.&amp;nbsp;&lt;/P&gt;&lt;P&gt;column = if(and(date/time &amp;lt;&amp;gt; blank()&amp;nbsp; &amp;nbsp;,&amp;nbsp; &amp;nbsp;status = blank())&amp;nbsp; , 1, blank())&lt;/P&gt;&lt;P&gt;this flag column should put 1 in case of status blank and date/time not blank.&amp;nbsp;&lt;/P&gt;&lt;P&gt;then you need to sum it up.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Let me know if this works. Else, share sample data&lt;/P&gt;</description>
      <pubDate>Thu, 19 Jun 2025 07:16:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Counting-blank-fields-based-on-another-column/m-p/4736985#M181433</guid>
      <dc:creator>Rupak_bi</dc:creator>
      <dc:date>2025-06-19T07:16:33Z</dc:date>
    </item>
    <item>
      <title>Re: Counting blank fields based on another column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Counting-blank-fields-based-on-another-column/m-p/4737156#M181443</link>
      <description>&lt;DIV class=""&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;Hi mgaut341&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV&gt;&lt;DIV class=""&gt;No as&amp;nbsp; I am not allowed in your Tenant, can you attach the pbix here in your reply?&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 19 Jun 2025 08:24:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Counting-blank-fields-based-on-another-column/m-p/4737156#M181443</guid>
      <dc:creator>FBergamaschi</dc:creator>
      <dc:date>2025-06-19T08:24:25Z</dc:date>
    </item>
    <item>
      <title>Re: Counting blank fields based on another column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Counting-blank-fields-based-on-another-column/m-p/4737313#M181448</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="629920" data-lia-user-login="mgaut341" class="lia-mention lia-mention-user"&gt;mgaut341&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;I can't access your PBIX file. The error message indicates it does not exist in the tenant, so please share the sample file with access.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 19 Jun 2025 09:57:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Counting-blank-fields-based-on-another-column/m-p/4737313#M181448</guid>
      <dc:creator>v-saisrao-msft</dc:creator>
      <dc:date>2025-06-19T09:57:45Z</dc:date>
    </item>
    <item>
      <title>Re: Counting blank fields based on another column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Counting-blank-fields-based-on-another-column/m-p/4737890#M181470</link>
      <description>&lt;P&gt;ok, what it's currently shwing?&lt;/P&gt;</description>
      <pubDate>Thu, 19 Jun 2025 16:39:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Counting-blank-fields-based-on-another-column/m-p/4737890#M181470</guid>
      <dc:creator>techies</dc:creator>
      <dc:date>2025-06-19T16:39:41Z</dc:date>
    </item>
    <item>
      <title>Re: Counting blank fields based on another column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Counting-blank-fields-based-on-another-column/m-p/4739924#M181532</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="629920" data-lia-user-login="mgaut341" class="lia-mention lia-mention-user"&gt;mgaut341&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-teams="true"&gt;checking in to see if your issue has been resolved. And share the sample data or Pbix file.&lt;BR /&gt;Please let us know if you still need assistance.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-teams="true"&gt;Thank you.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Jun 2025 04:08:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Counting-blank-fields-based-on-another-column/m-p/4739924#M181532</guid>
      <dc:creator>v-saisrao-msft</dc:creator>
      <dc:date>2025-06-23T04:08:21Z</dc:date>
    </item>
    <item>
      <title>Re: Counting blank fields based on another column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Counting-blank-fields-based-on-another-column/m-p/4741017#M181583</link>
      <description>&lt;P&gt;I was not able to get it to work, so I used a subtraction formula from the other result status' to get my correct answer.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Jun 2025 14:26:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Counting-blank-fields-based-on-another-column/m-p/4741017#M181583</guid>
      <dc:creator>mgaut341</dc:creator>
      <dc:date>2025-06-23T14:26:11Z</dc:date>
    </item>
    <item>
      <title>Re: Counting blank fields based on another column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Counting-blank-fields-based-on-another-column/m-p/4741630#M181592</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="629920" data-lia-user-login="mgaut341" class="lia-mention lia-mention-user"&gt;mgaut341&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;Glad your issue has been resolved. Please mark your reply as the solution, as it will help other community members.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Tue, 24 Jun 2025 04:16:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Counting-blank-fields-based-on-another-column/m-p/4741630#M181592</guid>
      <dc:creator>v-saisrao-msft</dc:creator>
      <dc:date>2025-06-24T04:16:18Z</dc:date>
    </item>
  </channel>
</rss>

