<?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 Using Dax Measure to count all rows in a single column except for one specified value in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Using-Dax-Measure-to-count-all-rows-in-a-single-column-except/m-p/1366039#M24792</link>
    <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I will keep this short in the first instance as I have had trouble signing in to the board (my last post got eaten).&lt;/P&gt;&lt;P&gt;Essentially, I have a large dataset of weekly staff activity, collated from multiple teams, with teams and names down the rows and weekly submissions along columns.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have unpivoted my dataset in powerquery so that all my values are running down a couple of columns; team and staff member (now multiple per person), date, activity, time spent on that activity.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have used this to create a dashboard of break down this info, however have been trying to also include a data completion stat of some sort to show how much stuff is missing over a given selection. Within the activity column I have a value "No Data Submitted" that I have used a measure to track against the total in a gauge as a temporary solution, however I am sure there must be another way of doing it that tells me how much complete data I have rather than how much incomplete I have. I have been trying to find a dax function that will run a count of all entries except for the "no data submitted" value, however nothing has worked so far. Any suggestions appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 12 Sep 2020 10:21:56 GMT</pubDate>
    <dc:creator>VM_0451</dc:creator>
    <dc:date>2020-09-12T10:21:56Z</dc:date>
    <item>
      <title>Using Dax Measure to count all rows in a single column except for one specified value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Using-Dax-Measure-to-count-all-rows-in-a-single-column-except/m-p/1366039#M24792</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I will keep this short in the first instance as I have had trouble signing in to the board (my last post got eaten).&lt;/P&gt;&lt;P&gt;Essentially, I have a large dataset of weekly staff activity, collated from multiple teams, with teams and names down the rows and weekly submissions along columns.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have unpivoted my dataset in powerquery so that all my values are running down a couple of columns; team and staff member (now multiple per person), date, activity, time spent on that activity.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have used this to create a dashboard of break down this info, however have been trying to also include a data completion stat of some sort to show how much stuff is missing over a given selection. Within the activity column I have a value "No Data Submitted" that I have used a measure to track against the total in a gauge as a temporary solution, however I am sure there must be another way of doing it that tells me how much complete data I have rather than how much incomplete I have. I have been trying to find a dax function that will run a count of all entries except for the "no data submitted" value, however nothing has worked so far. Any suggestions appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 12 Sep 2020 10:21:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Using-Dax-Measure-to-count-all-rows-in-a-single-column-except/m-p/1366039#M24792</guid>
      <dc:creator>VM_0451</dc:creator>
      <dc:date>2020-09-12T10:21:56Z</dc:date>
    </item>
    <item>
      <title>Re: Using Dax Measure to count all rows in a single column except for one specified value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Using-Dax-Measure-to-count-all-rows-in-a-single-column-except/m-p/1366103#M24795</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="258434" data-lia-user-login="VM_0451" class="lia-mention lia-mention-user"&gt;VM_0451&lt;/a&gt;&amp;nbsp;Without sample data and expected output I can only guess but it sounds like:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Measure = COUNTROWS(FILTER('Table',[Activity] &amp;lt;&amp;gt; "No Data Submitted"))

or

Measure = CALCULATE(COUNT('Table'[Name]),[Activity] &amp;lt;&amp;gt; "No Data Submitted")&lt;/LI-CODE&gt;
&lt;P&gt;If this is not it,&amp;nbsp;@ me in a reply and provide sample data and expected output.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 12 Sep 2020 11:47:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Using-Dax-Measure-to-count-all-rows-in-a-single-column-except/m-p/1366103#M24795</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2020-09-12T11:47:03Z</dc:date>
    </item>
    <item>
      <title>Re: Using Dax Measure to count all rows in a single column except for one specified value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Using-Dax-Measure-to-count-all-rows-in-a-single-column-except/m-p/1366202#M24796</link>
      <description>&lt;P&gt;Yep, that did it.&lt;/P&gt;&lt;P&gt;I got close with my previous attempts but messed up the syntax by not knowing about &amp;lt;&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks very much!&lt;/P&gt;</description>
      <pubDate>Sat, 12 Sep 2020 13:14:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Using-Dax-Measure-to-count-all-rows-in-a-single-column-except/m-p/1366202#M24796</guid>
      <dc:creator>VM_0451</dc:creator>
      <dc:date>2020-09-12T13:14:06Z</dc:date>
    </item>
  </channel>
</rss>

