<?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 per Month in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Counting-per-Month/m-p/2781257#M87021</link>
    <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="410679" data-lia-user-login="NJ81858" class="lia-mention lia-mention-user"&gt;NJ81858&lt;/a&gt; , Have a separate date table joined with Redemption Date&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;calculate(countrows(Table), filter(all('Date'), Date[Month Year] = max(Date[Month Year]) ) )&lt;/P&gt;</description>
    <pubDate>Tue, 20 Sep 2022 15:24:46 GMT</pubDate>
    <dc:creator>amitchandak</dc:creator>
    <dc:date>2022-09-20T15:24:46Z</dc:date>
    <item>
      <title>Counting per Month</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Counting-per-Month/m-p/2781223#M87020</link>
      <description>&lt;P&gt;I am trying to calculate the number of occurances per month. The 'Data Date' field is the month that the data was pulled and the 'Redemption Date' is the date that I am trying to count the number of occurances for. So essentially what I want is the number of 'Redemption Date' for each 'Data Date'. This is what I have so far and it is not giving me the correct answer, so any help would be appreciated!&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Sep 2022 15:13:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Counting-per-Month/m-p/2781223#M87020</guid>
      <dc:creator>NJ81858</dc:creator>
      <dc:date>2022-09-20T15:13:56Z</dc:date>
    </item>
    <item>
      <title>Re: Counting per Month</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Counting-per-Month/m-p/2781257#M87021</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="410679" data-lia-user-login="NJ81858" class="lia-mention lia-mention-user"&gt;NJ81858&lt;/a&gt; , Have a separate date table joined with Redemption Date&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;calculate(countrows(Table), filter(all('Date'), Date[Month Year] = max(Date[Month Year]) ) )&lt;/P&gt;</description>
      <pubDate>Tue, 20 Sep 2022 15:24:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Counting-per-Month/m-p/2781257#M87021</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2022-09-20T15:24:46Z</dc:date>
    </item>
    <item>
      <title>Re: Counting per Month</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Counting-per-Month/m-p/2781344#M87023</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="410679" data-lia-user-login="NJ81858" class="lia-mention lia-mention-user"&gt;NJ81858&lt;/a&gt;&amp;nbsp;Put your Data Date field into a table visual along with any other stuff you want. Create a measure like:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Measure = COUNTROWS('CD Data')

Or

Measure = COUNTROWS(DISTINCT('CD Data'[Redemption Date]))&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 20 Sep 2022 15:54:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Counting-per-Month/m-p/2781344#M87023</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2022-09-20T15:54:13Z</dc:date>
    </item>
    <item>
      <title>Re: Counting per Month</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Counting-per-Month/m-p/2781736#M87046</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="410679" data-lia-user-login="NJ81858" class="lia-mention lia-mention-user"&gt;NJ81858&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;It depends on the filter context of your viual. However, yoy may try&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;Redemption Count =
SUMX (
    VALUES ( 'CD Data'[Data Date] ),
    COUNTROWS ( CALCULATETABLE ( VALUES ( 'CD Data'[Redemption Date] ) ) )
)&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 20 Sep 2022 19:17:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Counting-per-Month/m-p/2781736#M87046</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-09-20T19:17:43Z</dc:date>
    </item>
  </channel>
</rss>

