<?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 ON date finding Cummulative Number... in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/ON-date-finding-Cummulative-Number/m-p/4809018#M183910</link>
    <description>&lt;P&gt;Is there way to calculate cummulative number of occurences based on the date coulmn.&lt;/P&gt;&lt;P&gt;For example:&lt;/P&gt;&lt;P&gt;In one table i have the information when something was created:&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; date&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;| &amp;nbsp;name&lt;/P&gt;&lt;P&gt;1/1/2025&amp;nbsp; &amp;nbsp; | &amp;nbsp;abc&lt;/P&gt;&lt;P&gt;12/1/2025&amp;nbsp; | &amp;nbsp;osks&lt;/P&gt;&lt;P&gt;13/3/2025&amp;nbsp; | &amp;nbsp; doferf&lt;/P&gt;&lt;P&gt;and in the second one i want to have a number of "names" by month name (lets assume i have a Date table with month names related with the first table). So if to names were created in january the sum i 2, if no names were created in february total number is still 2, one was created in march so total number now is 3, and so on....&lt;/P&gt;&lt;P&gt;Month name | Number of names&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; January &amp;nbsp; &amp;nbsp; | &amp;nbsp;2&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; February &amp;nbsp; | &amp;nbsp;2&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; March &amp;nbsp; &amp;nbsp; &amp;nbsp; | &amp;nbsp;3&lt;/P&gt;&lt;P&gt;Is there a wasy to do this?&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
    <pubDate>Wed, 27 Aug 2025 10:44:12 GMT</pubDate>
    <dc:creator>Suman8877</dc:creator>
    <dc:date>2025-08-27T10:44:12Z</dc:date>
    <item>
      <title>ON date finding Cummulative Number...</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/ON-date-finding-Cummulative-Number/m-p/4809018#M183910</link>
      <description>&lt;P&gt;Is there way to calculate cummulative number of occurences based on the date coulmn.&lt;/P&gt;&lt;P&gt;For example:&lt;/P&gt;&lt;P&gt;In one table i have the information when something was created:&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; date&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;| &amp;nbsp;name&lt;/P&gt;&lt;P&gt;1/1/2025&amp;nbsp; &amp;nbsp; | &amp;nbsp;abc&lt;/P&gt;&lt;P&gt;12/1/2025&amp;nbsp; | &amp;nbsp;osks&lt;/P&gt;&lt;P&gt;13/3/2025&amp;nbsp; | &amp;nbsp; doferf&lt;/P&gt;&lt;P&gt;and in the second one i want to have a number of "names" by month name (lets assume i have a Date table with month names related with the first table). So if to names were created in january the sum i 2, if no names were created in february total number is still 2, one was created in march so total number now is 3, and so on....&lt;/P&gt;&lt;P&gt;Month name | Number of names&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; January &amp;nbsp; &amp;nbsp; | &amp;nbsp;2&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; February &amp;nbsp; | &amp;nbsp;2&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; March &amp;nbsp; &amp;nbsp; &amp;nbsp; | &amp;nbsp;3&lt;/P&gt;&lt;P&gt;Is there a wasy to do this?&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Wed, 27 Aug 2025 10:44:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/ON-date-finding-Cummulative-Number/m-p/4809018#M183910</guid>
      <dc:creator>Suman8877</dc:creator>
      <dc:date>2025-08-27T10:44:12Z</dc:date>
    </item>
    <item>
      <title>Re: ON date finding Cummulative Number...</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/ON-date-finding-Cummulative-Number/m-p/4809023#M183912</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1339716" data-lia-user-login="Suman8877" class="lia-mention lia-mention-user"&gt;Suman8877&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;You can do this with a cumulative (running total) measure in DAX. Here’s one simple way:&lt;/P&gt;
&lt;P&gt;1. Make sure you have a proper Date table in your model and relate it to your fact table [Date].&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2. Create a base count measure:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Rows Count =
COUNTROWS ( Events )&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;3. Then create the cumulative measure:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Cumulative Names =
CALCULATE (
   [Rows Count],
   DATESYTD ( 'Date'[Date] )
)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;4. Put Year and Month Name from your Date table on rows, and use Cumulative Names as the value.&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Aug 2025 10:48:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/ON-date-finding-Cummulative-Number/m-p/4809023#M183912</guid>
      <dc:creator>rohit1991</dc:creator>
      <dc:date>2025-08-27T10:48:58Z</dc:date>
    </item>
    <item>
      <title>Re: ON date finding Cummulative Number...</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/ON-date-finding-Cummulative-Number/m-p/4809029#M183913</link>
      <description>&lt;P&gt;this is very simple,&lt;/P&gt;&lt;P&gt;here is my file for you:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://drive.google.com/drive/folders/1DmxrAG-Ow0X5XuCWUq3f8fGATFqblxfs?usp=sharing" target="_blank"&gt;https://drive.google.com/drive/folders/1DmxrAG-Ow0X5XuCWUq3f8fGATFqblxfs?usp=sharing&lt;/A&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;here&amp;nbsp; is the result based on the below data I invented&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;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If this helped, please consider giving kudos and mark as a solution&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="273" data-lia-user-login="me" class="lia-mention lia-mention-user"&gt;me&lt;/a&gt;in replies or I'll lose your thread&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Want to check your DAX skills? &lt;A href="https://www.linkedin.com/company/kubisco/" target="_blank" rel="noopener"&gt;Answer my biweekly DAX challenges on the kubisco Linkedin page&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Consider voting &lt;A href="https://community.fabric.microsoft.com/t5/Fabric-Ideas/Power-BI-Filter-Pane-as-an-icon-on-the-right-side-bar-in-on/idi-p/4728588" target="_blank" rel="noopener"&gt;this Power BI idea&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Francesco Bergamaschi&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;MBA, M.Eng, M.Econ, Professor of BI&lt;/P&gt;</description>
      <pubDate>Wed, 27 Aug 2025 10:51:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/ON-date-finding-Cummulative-Number/m-p/4809029#M183913</guid>
      <dc:creator>FBergamaschi</dc:creator>
      <dc:date>2025-08-27T10:51:59Z</dc:date>
    </item>
    <item>
      <title>Re: ON date finding Cummulative Number...</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/ON-date-finding-Cummulative-Number/m-p/4809062#M183914</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1287762" data-lia-user-login="FBergamaschi" class="lia-mention lia-mention-user"&gt;FBergamaschi&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The solution posted just shows count of names per month (Jan = 2, Mar = 3, Apr = 1, etc.). That’s only a monthly count, not cumulative.&lt;/P&gt;</description>
      <pubDate>Wed, 27 Aug 2025 11:23:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/ON-date-finding-Cummulative-Number/m-p/4809062#M183914</guid>
      <dc:creator>Suman8877</dc:creator>
      <dc:date>2025-08-27T11:23:00Z</dc:date>
    </item>
    <item>
      <title>Re: ON date finding Cummulative Number...</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/ON-date-finding-Cummulative-Number/m-p/4809091#M183915</link>
      <description>&lt;P&gt;Updated, sorry I forgot the YTD part&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://drive.google.com/drive/folders/1DmxrAG-Ow0X5XuCWUq3f8fGATFqblxfs?usp=sharing" target="_blank"&gt;https://drive.google.com/drive/folders/1DmxrAG-Ow0X5XuCWUq3f8fGATFqblxfs?usp=sharing&lt;/A&gt;&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;If this helped, please consider giving kudos and mark as a solution&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="273" data-lia-user-login="me" class="lia-mention lia-mention-user"&gt;me&lt;/a&gt; in replies or I'll lose your thread&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Want to check your DAX skills? &lt;A href="https://www.linkedin.com/company/kubisco/" target="_blank"&gt;Answer my biweekly DAX challenges on the kubisco Linkedin page&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Consider voting &lt;A href="https://community.fabric.microsoft.com/t5/Fabric-Ideas/Power-BI-Filter-Pane-as-an-icon-on-the-right-side-bar-in-on/idi-p/4728588" target="_blank"&gt;this Power BI idea&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Francesco Bergamaschi&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;MBA, M.Eng, M.Econ, Professor of BI&lt;/P&gt;</description>
      <pubDate>Wed, 27 Aug 2025 12:06:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/ON-date-finding-Cummulative-Number/m-p/4809091#M183915</guid>
      <dc:creator>FBergamaschi</dc:creator>
      <dc:date>2025-08-27T12:06:29Z</dc:date>
    </item>
  </channel>
</rss>

