<?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 DAX distinct counts in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-distinct-counts/m-p/3717367#M144713</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am newish to Power Bi i am trying to find out how many operators have entered data each day.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i have removed alot of the noisey information but from the below i would like the column "Operator" to have the value 3 next to 03/01/2024 and only have one row for this and this logic flowing down.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I thought changing the "summarization" to "count(distinct" would complete this but it made no change.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i have also tried a "distinctcount" within the "sumarize" portion of the formular and this has not worked.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If someone can provide me with some advice as to how to complete this that would be great.&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;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 22 Feb 2024 14:36:15 GMT</pubDate>
    <dc:creator>rwalsh200493</dc:creator>
    <dc:date>2024-02-22T14:36:15Z</dc:date>
    <item>
      <title>DAX distinct counts</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-distinct-counts/m-p/3717367#M144713</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am newish to Power Bi i am trying to find out how many operators have entered data each day.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i have removed alot of the noisey information but from the below i would like the column "Operator" to have the value 3 next to 03/01/2024 and only have one row for this and this logic flowing down.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I thought changing the "summarization" to "count(distinct" would complete this but it made no change.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i have also tried a "distinctcount" within the "sumarize" portion of the formular and this has not worked.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If someone can provide me with some advice as to how to complete this that would be great.&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;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Feb 2024 14:36:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-distinct-counts/m-p/3717367#M144713</guid>
      <dc:creator>rwalsh200493</dc:creator>
      <dc:date>2024-02-22T14:36:15Z</dc:date>
    </item>
    <item>
      <title>Re: DAX distinct counts</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-distinct-counts/m-p/3717432#M144717</link>
      <description>&lt;P&gt;Open your Power Query editor and select your date column &amp;gt; Group by&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;make sure you're grouping on your date then select "Count Distinct Rows" under operation&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Feb 2024 14:50:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-distinct-counts/m-p/3717432#M144717</guid>
      <dc:creator>Syk</dc:creator>
      <dc:date>2024-02-22T14:50:51Z</dc:date>
    </item>
    <item>
      <title>Re: DAX distinct counts</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-distinct-counts/m-p/3717438#M144719</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="682467" data-lia-user-login="rwalsh200493" class="lia-mention lia-mention-user"&gt;rwalsh200493&lt;/a&gt;&amp;nbsp;Try:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Table = 
  SUMMARIZE(
    'Table',
    'Table'[Date.1].[Date],
    "Operator",
    COUNTROWS(DISTINCT('Table'[Operator]))
  )&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 22 Feb 2024 14:52:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-distinct-counts/m-p/3717438#M144719</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2024-02-22T14:52:36Z</dc:date>
    </item>
    <item>
      <title>Re: DAX distinct counts</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-distinct-counts/m-p/3717468#M144722</link>
      <description>&lt;P&gt;This solution was ideal thanks as i needed to complete this through DAX and not the power Query editor as i used DAX to create the table. I should have put that in the intial brief&lt;/P&gt;</description>
      <pubDate>Thu, 22 Feb 2024 14:57:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-distinct-counts/m-p/3717468#M144722</guid>
      <dc:creator>rwalsh200493</dc:creator>
      <dc:date>2024-02-22T14:57:50Z</dc:date>
    </item>
  </channel>
</rss>

