<?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 obtain count (or %) of 0 for columns where some (not all) rows are 0 in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-obtain-count-or-of-0-for-columns-where-some-not-all-rows/m-p/4747928#M181816</link>
    <description>&lt;P&gt;&lt;SPAN&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="212704" data-lia-user-login="afaherty" class="lia-mention lia-mention-user"&gt;afaherty&lt;/a&gt;&amp;nbsp;As we haven’t heard back from you, we wanted to kindly follow up to check if the solution provided for your issue worked? or let us know if you need any further assistance here?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Prashanth Are&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;MS Fabric community support&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If this post helps, then please consider&amp;nbsp;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;&amp;nbsp;to help the other members find it more quickly and give&amp;nbsp;&lt;STRONG&gt;Kudos&lt;/STRONG&gt;&amp;nbsp;if helped you resolve your query&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 30 Jun 2025 07:18:59 GMT</pubDate>
    <dc:creator>v-prasare</dc:creator>
    <dc:date>2025-06-30T07:18:59Z</dc:date>
    <item>
      <title>How to obtain count (or %) of 0 for columns where some (not all) rows are 0</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-obtain-count-or-of-0-for-columns-where-some-not-all-rows/m-p/4736117#M181400</link>
      <description>&lt;P&gt;Apologies if my subject line is confusing - I didn't know how to word this!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have matrices that show distinct counts and bar graphs that show percentages. I wanted 0 to show when the counts (or percentages) are 0 so I created a dim table to use in the graphs. This works for columns where there are some non-zeros BUT I don't want the columns that have ALL zeros to show at all. I just want them to NOT be there. 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;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here are my measures:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;Distinct Counts:&lt;/STRONG&gt;&lt;/U&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;SPAN&gt;IndexUniqueCount = &lt;/SPAN&gt;&lt;SPAN&gt;DISTINCTCOUNT&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Table'[Index]&lt;/SPAN&gt;&lt;SPAN&gt;)+&lt;/SPAN&gt;&lt;SPAN&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;SPAN&gt;&lt;U&gt;Percentages:&lt;/U&gt;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN&gt;County % = &lt;/SPAN&gt;&lt;SPAN&gt;DIVIDE&lt;/SPAN&gt;&lt;SPAN&gt; (&lt;/SPAN&gt;&lt;SPAN&gt;[IndexUniqueCount]&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;[IndexUniqueCount]&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;ALL&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Table'[County]&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;'Table'[County]&lt;/SPAN&gt;&lt;SPAN&gt;)))&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;&lt;SPAN&gt;One of my bar graphs has a more complicated percentage calculation because we're asking the survey respondents to tell us about whether the county they work in has any unique characteristics from a list:&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/U&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Unique Characteristics % = &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;_numerator&lt;/SPAN&gt;&lt;SPAN&gt; =&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;DISTINCTCOUNT&lt;/SPAN&gt;&lt;SPAN&gt; (&lt;/SPAN&gt;&lt;SPAN&gt;'Table'[Index]&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;_selectedCounty&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;=&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;ALLSELECTED&lt;/SPAN&gt;&lt;SPAN&gt; (&lt;/SPAN&gt;&lt;SPAN&gt;'Table'[Survey Items]&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;_denominator&lt;/SPAN&gt;&lt;SPAN&gt; =&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;DISTINCTCOUNT&lt;/SPAN&gt;&lt;SPAN&gt; (&lt;/SPAN&gt;&lt;SPAN&gt;'Table'[Index]&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;TREATAS&lt;/SPAN&gt;&lt;SPAN&gt; (&lt;/SPAN&gt;&lt;SPAN&gt;_selectedCounty&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;'Table'[Survey Items]&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;REMOVEFILTERS&lt;/SPAN&gt;&lt;SPAN&gt; (&lt;/SPAN&gt;&lt;SPAN&gt;'Table'[Unique Characteristics]&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;&lt;SPAN&gt;RETURN&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;DIVIDE&lt;/SPAN&gt;&lt;SPAN&gt; (&lt;/SPAN&gt;&lt;SPAN&gt;_numerator&lt;/SPAN&gt;&lt;SPAN&gt; +&lt;/SPAN&gt;&lt;SPAN&gt;0&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;_denominator&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Thanks everyone!&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 18 Jun 2025 13:58:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-obtain-count-or-of-0-for-columns-where-some-not-all-rows/m-p/4736117#M181400</guid>
      <dc:creator>afaherty</dc:creator>
      <dc:date>2025-06-18T13:58:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to obtain count (or %) of 0 for columns where some (not all) rows are 0</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-obtain-count-or-of-0-for-columns-where-some-not-all-rows/m-p/4736133#M181403</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="212704" data-lia-user-login="afaherty" class="lia-mention lia-mention-user"&gt;afaherty&lt;/a&gt;&amp;nbsp;You can modify the IndexUniqueCount measure to return BLANK() when the count is zero.&lt;/P&gt;
&lt;P&gt;IndexUniqueCount = &lt;BR /&gt;VAR CountValue = DISTINCTCOUNT('Table'[Index])&lt;BR /&gt;RETURN IF(CountValue = 0, BLANK(), CountValue)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Similarly, for the County % measure, you can modify it to return BLANK() when the percentage is zero.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;DAX&lt;BR /&gt;County % = &lt;BR /&gt;VAR CountValue = [IndexUniqueCount]&lt;BR /&gt;VAR TotalCount = CALCULATE([IndexUniqueCount], ALL('Table'[County], 'Table'[County]))&lt;BR /&gt;RETURN IF(CountValue = 0, BLANK(), DIVIDE(CountValue, TotalCount))&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;DAX&lt;BR /&gt;Unique Characteristics % =&lt;BR /&gt;VAR _numerator = DISTINCTCOUNT('Table'[Index])&lt;BR /&gt;VAR _selectedCounty = ALLSELECTED('Table'[Survey Items])&lt;BR /&gt;VAR _denominator = CALCULATE(&lt;BR /&gt;DISTINCTCOUNT('Table'[Index]),&lt;BR /&gt;TREATAS(_selectedCounty, 'Table'[Survey Items]),&lt;BR /&gt;REMOVEFILTERS('Table'[Unique Characteristics])&lt;BR /&gt;)&lt;BR /&gt;RETURN IF(_numerator = 0, BLANK(), DIVIDE(_numerator, _denominator))&lt;/P&gt;</description>
      <pubDate>Wed, 18 Jun 2025 14:11:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-obtain-count-or-of-0-for-columns-where-some-not-all-rows/m-p/4736133#M181403</guid>
      <dc:creator>bhanu_gautam</dc:creator>
      <dc:date>2025-06-18T14:11:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to obtain count (or %) of 0 for columns where some (not all) rows are 0</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-obtain-count-or-of-0-for-columns-where-some-not-all-rows/m-p/4736175#M181404</link>
      <description>&lt;P&gt;Hey&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="212704" data-lia-user-login="afaherty" class="lia-mention lia-mention-user"&gt;afaherty&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;You're facing a common issue in Power BI matrix and bar visuals you want to &lt;STRONG&gt;show zero values within a group&lt;/STRONG&gt;, but &lt;STRONG&gt;hide entire columns (i.e., categories like counties) where all values are zero&lt;/STRONG&gt;. You need to create a &lt;STRONG&gt;custom filter measure&lt;/STRONG&gt; that returns TRUE() only&amp;nbsp;if &lt;STRONG&gt;at least one non-zero value exists&lt;/STRONG&gt; for that column (e.g., county). You can then apply this filter to the visual to hide columns where all values are zero.&lt;/P&gt;&lt;H3&gt;&amp;nbsp;&lt;/H3&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;&lt;STRONG&gt;1. Create a helper measure&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;This measure will evaluate whether the selected County has &lt;STRONG&gt;any non-zero data&lt;/STRONG&gt;.&lt;/P&gt;&lt;PRE&gt;ShowCounty =
IF(
    CALCULATE(
        DISTINCTCOUNT('Table'[Index]),
        REMOVEFILTERS('Table'[Survey Items]) -- or other dimensions as needed
    ) &amp;gt; 0,
    TRUE(),
    FALSE()
)&lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;&lt;EM&gt;You might also want to replace DISTINCTCOUNT('Table'[Index]) with the actual measure you’re using, like [IndexUniqueCount], if it's more relevant to your context.&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;&lt;STRONG&gt;2. Apply this measure as a visual-level filter&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;Select the matrix or bar chart.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Drag &lt;STRONG&gt;ShowCounty&lt;/STRONG&gt; to the &lt;STRONG&gt;Visual level filters&lt;/STRONG&gt; pane.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Set the filter to: &lt;STRONG&gt;is TRUE.&lt;/STRONG&gt;&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;EM&gt;This will ensure that only counties with at least one non-zero value across all rows/groups will show up in the visual.&lt;/EM&gt;&lt;/P&gt;&lt;H3&gt;&amp;nbsp;&lt;/H3&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;&lt;STRONG&gt;Things To Remember:&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Don't remove zero values inside the matrix.&lt;/STRONG&gt; Keep them your original intention to show 0 instead of blanks is correct for rows with partial data.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;This method works well with both &lt;STRONG&gt;matrices&lt;/STRONG&gt; and &lt;STRONG&gt;bar charts&lt;/STRONG&gt;, as long as the category axis is filtered by this helper measure.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;You may need to &lt;STRONG&gt;adjust granularity&lt;/STRONG&gt; depending on how many slicers/filters your report supports.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;For Detailed Information:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/dax/filter-functions-dax" target="_blank" rel="noopener"&gt;DAX Filter Functions - Official Docs&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.powerbi.com/" target="_blank" rel="noopener"&gt;Power BI Community – Hide columns with zero values&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://stackoverflow.com/" target="_blank" rel="noopener"&gt;Stack Overflow – Power BI visual filtering&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.sqlbi.com/" target="_blank" rel="noopener"&gt;SQLBI&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;If you found this solution helpful, please consider accepting it and giving it a kudos (Like) it’s greatly appreciated and helps others find the solution more easily.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Best Regards,&lt;BR /&gt;&lt;A href="https://www.linkedin.com/in/nasif-azam-9aa2331a0/" target="_blank" rel="noopener nofollow noreferrer"&gt;Nasif Azam&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Jun 2025 14:34:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-obtain-count-or-of-0-for-columns-where-some-not-all-rows/m-p/4736175#M181404</guid>
      <dc:creator>Nasif_Azam</dc:creator>
      <dc:date>2025-06-18T14:34:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to obtain count (or %) of 0 for columns where some (not all) rows are 0</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-obtain-count-or-of-0-for-columns-where-some-not-all-rows/m-p/4736220#M181407</link>
      <description>&lt;P&gt;Hi, Thank you so much for your assistance. I followed your directions and placed the new filter measure onto the visual but there are no True or False options when expanded:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Jun 2025 14:54:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-obtain-count-or-of-0-for-columns-where-some-not-all-rows/m-p/4736220#M181407</guid>
      <dc:creator>afaherty</dc:creator>
      <dc:date>2025-06-18T14:54:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to obtain count (or %) of 0 for columns where some (not all) rows are 0</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-obtain-count-or-of-0-for-columns-where-some-not-all-rows/m-p/4736226#M181409</link>
      <description>&lt;P&gt;Hi, thank you for your help. The problem is that I don't want the Caroline County column in the matrix above to show blanks if zero, I want them to show zero.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Jun 2025 14:57:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-obtain-count-or-of-0-for-columns-where-some-not-all-rows/m-p/4736226#M181409</guid>
      <dc:creator>afaherty</dc:creator>
      <dc:date>2025-06-18T14:57:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to obtain count (or %) of 0 for columns where some (not all) rows are 0</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-obtain-count-or-of-0-for-columns-where-some-not-all-rows/m-p/4736239#M181410</link>
      <description>&lt;P&gt;All of the results come out as "True" it appears..&lt;/P&gt;</description>
      <pubDate>Wed, 18 Jun 2025 15:03:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-obtain-count-or-of-0-for-columns-where-some-not-all-rows/m-p/4736239#M181410</guid>
      <dc:creator>afaherty</dc:creator>
      <dc:date>2025-06-18T15:03:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to obtain count (or %) of 0 for columns where some (not all) rows are 0</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-obtain-count-or-of-0-for-columns-where-some-not-all-rows/m-p/4739620#M181524</link>
      <description>&lt;P&gt;Hey&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="212704" data-lia-user-login="afaherty" class="lia-mention lia-mention-user"&gt;afaherty&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Thanks for the update and screenshots they were very helpful! It looks like the reason you're seeing only "True" for all counties is that the filter logic isn't evaluating at the correct granularity. Let’s refine it so that it checks each &lt;STRONG&gt;County&lt;/STRONG&gt; individually and returns FALSE when &lt;STRONG&gt;all rows/groups within a county are zero&lt;/STRONG&gt;. Try the updated measure:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;ShowCounty :=
CALCULATE(
    MAXX(
        VALUES('Table'[Group]),  // Replace with your row-level category
        IF([IndexUniqueCount] &amp;gt; 0, 1, 0)
    ),
    ALLEXCEPT('Table', 'Table'[County])  // Keeps County context only
) = 1&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;If you found this solution helpful, please consider accepting it and giving it a kudos (Like) it’s greatly appreciated and helps others find the solution more easily.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Best Regards,&lt;BR /&gt;&lt;A href="https://www.linkedin.com/in/nasif-azam-9aa2331a0/" target="_blank" rel="noopener nofollow noreferrer"&gt;Nasif Azam&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 22 Jun 2025 09:12:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-obtain-count-or-of-0-for-columns-where-some-not-all-rows/m-p/4739620#M181524</guid>
      <dc:creator>Nasif_Azam</dc:creator>
      <dc:date>2025-06-22T09:12:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to obtain count (or %) of 0 for columns where some (not all) rows are 0</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-obtain-count-or-of-0-for-columns-where-some-not-all-rows/m-p/4740913#M181580</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="212704" data-lia-user-login="afaherty" class="lia-mention lia-mention-user"&gt;afaherty&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;We would like to follow up to see if the solution provided by the super user resolved your issue. Please let us know if you need any further assistance.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="871356" data-lia-user-login="Nasif_Azam" class="lia-mention lia-mention-user"&gt;Nasif_Azam&lt;/a&gt; &amp;amp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="625922" data-lia-user-login="bhanu_gautam" class="lia-mention lia-mention-user"&gt;bhanu_gautam&lt;/a&gt;&amp;nbsp;Thanks for your prompt response.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Prashanth Are&lt;/P&gt;
&lt;P&gt;MS Fabric community support.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;If our super user response resolved your issue, please mark it as "&lt;STRONG&gt;Accept as solution&lt;/STRONG&gt;" and click "Yes" if you found it helpful.&lt;/P&gt;</description>
      <pubDate>Mon, 23 Jun 2025 13:36:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-obtain-count-or-of-0-for-columns-where-some-not-all-rows/m-p/4740913#M181580</guid>
      <dc:creator>v-prasare</dc:creator>
      <dc:date>2025-06-23T13:36:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to obtain count (or %) of 0 for columns where some (not all) rows are 0</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-obtain-count-or-of-0-for-columns-where-some-not-all-rows/m-p/4744945#M181682</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="212704" data-lia-user-login="afaherty" class="lia-mention lia-mention-user"&gt;afaherty&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;As we haven’t heard back from you, we wanted to kindly follow up to check if the solution provided for your issue worked? or let us know if you need any further assistance here?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Prashanth Are&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;MS Fabric community support&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If this post helps, then please consider&amp;nbsp;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;&amp;nbsp;to help the other members find it more quickly and give&amp;nbsp;&lt;STRONG&gt;Kudos&lt;/STRONG&gt;&amp;nbsp;if helped you resolve your query&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Jun 2025 11:20:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-obtain-count-or-of-0-for-columns-where-some-not-all-rows/m-p/4744945#M181682</guid>
      <dc:creator>v-prasare</dc:creator>
      <dc:date>2025-06-26T11:20:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to obtain count (or %) of 0 for columns where some (not all) rows are 0</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-obtain-count-or-of-0-for-columns-where-some-not-all-rows/m-p/4747928#M181816</link>
      <description>&lt;P&gt;&lt;SPAN&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="212704" data-lia-user-login="afaherty" class="lia-mention lia-mention-user"&gt;afaherty&lt;/a&gt;&amp;nbsp;As we haven’t heard back from you, we wanted to kindly follow up to check if the solution provided for your issue worked? or let us know if you need any further assistance here?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Prashanth Are&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;MS Fabric community support&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If this post helps, then please consider&amp;nbsp;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;&amp;nbsp;to help the other members find it more quickly and give&amp;nbsp;&lt;STRONG&gt;Kudos&lt;/STRONG&gt;&amp;nbsp;if helped you resolve your query&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Jun 2025 07:18:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-obtain-count-or-of-0-for-columns-where-some-not-all-rows/m-p/4747928#M181816</guid>
      <dc:creator>v-prasare</dc:creator>
      <dc:date>2025-06-30T07:18:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to obtain count (or %) of 0 for columns where some (not all) rows are 0</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-obtain-count-or-of-0-for-columns-where-some-not-all-rows/m-p/4755419#M182078</link>
      <description>&lt;P&gt;Thank you so much!&lt;/P&gt;</description>
      <pubDate>Mon, 07 Jul 2025 13:35:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-obtain-count-or-of-0-for-columns-where-some-not-all-rows/m-p/4755419#M182078</guid>
      <dc:creator>afaherty</dc:creator>
      <dc:date>2025-07-07T13:35:30Z</dc:date>
    </item>
  </channel>
</rss>

