<?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: Running Totals in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Totals/m-p/4804065#M183754</link>
    <description>&lt;P&gt;Hey,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your response, but I'm still having a issue.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So, I created your measure and got this:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Which is great!&lt;/P&gt;&lt;P&gt;What would I have to do to get a column that shows the total by month per user?&lt;/P&gt;&lt;P&gt;For instance, under Staley, a column next to "running total" would be month "monthly total" where&lt;/P&gt;&lt;P&gt;Sept-24 = 2&lt;/P&gt;&lt;P&gt;Aug-24 = 2&lt;/P&gt;&lt;P&gt;Dec-23 = 5&lt;/P&gt;&lt;P&gt;Oct-23&amp;nbsp; = 1&lt;/P&gt;</description>
    <pubDate>Thu, 21 Aug 2025 18:02:08 GMT</pubDate>
    <dc:creator>e175429</dc:creator>
    <dc:date>2025-08-21T18:02:08Z</dc:date>
    <item>
      <title>Running Totals</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Totals/m-p/4802799#M183717</link>
      <description>&lt;P&gt;Hello All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is a sample of my data:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Anyone know what I should do to get the running totals for the Users?&lt;/P&gt;&lt;P&gt;Mind you, my actual data is over 43,000 rows.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried to upload a sample file but you have to be a SuperUser.&lt;/P&gt;</description>
      <pubDate>Wed, 20 Aug 2025 21:23:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Totals/m-p/4802799#M183717</guid>
      <dc:creator>e175429</dc:creator>
      <dc:date>2025-08-20T21:23:29Z</dc:date>
    </item>
    <item>
      <title>Re: Running Totals</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Totals/m-p/4802833#M183718</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="531109" data-lia-user-login="e175429" class="lia-mention lia-mention-user"&gt;e175429&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;1. Build&amp;nbsp;&lt;SPAN&gt;a Date table if this doesn't exist. Suppose this Date table is called 'Date'.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;2. Suppose the table that has data on your screenshot is called 'Fact'. Create a proper one-to-many relationship from 'Date' to your 'Fact'[PaidDate]&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;You can use measure,&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;RunningTotal:=&lt;BR /&gt;CALCULATE(&lt;BR /&gt;COUNTROWS('Fact'),&lt;BR /&gt;FILTER(&lt;BR /&gt;ALL('Date'[Date]),&amp;nbsp;&lt;BR /&gt;'Date'[Date] &amp;lt;= MAX('Date'[Date])&lt;BR /&gt;),&lt;BR /&gt;VALUES('Fact'[User])&lt;BR /&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Aug 2025 22:24:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Totals/m-p/4802833#M183718</guid>
      <dc:creator>MasonMA</dc:creator>
      <dc:date>2025-08-20T22:24:49Z</dc:date>
    </item>
    <item>
      <title>Re: Running Totals</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Totals/m-p/4803336#M183730</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="531109" data-lia-user-login="e175429" class="lia-mention lia-mention-user"&gt;e175429&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Could you please try the following approach:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Running Total per User :=
VAR CurrentDate = MAX ( 'Fact'[PaidDate] )
RETURN
CALCULATE (
    COUNTROWS ( 'Fact' ),
    FILTER (
        ALLSELECTED ( 'Fact'[PaidDate] ),
        'Fact'[PaidDate] &amp;lt;= CurrentDate
    )
)&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 21 Aug 2025 08:36:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Totals/m-p/4803336#M183730</guid>
      <dc:creator>Sahir_Maharaj</dc:creator>
      <dc:date>2025-08-21T08:36:23Z</dc:date>
    </item>
    <item>
      <title>Re: Running Totals</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Totals/m-p/4803878#M183743</link>
      <description>&lt;P&gt;Hey,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your response. I've created the measure but I'm not sure how to graph this.&lt;/P&gt;&lt;P&gt;This is what I get:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Which is not exactly what I am looking for.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;In the table, I want the running totals for everyone, and then when I put a filter on, I would like the running total for that one individual.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have already created a date table:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Aug 2025 14:43:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Totals/m-p/4803878#M183743</guid>
      <dc:creator>e175429</dc:creator>
      <dc:date>2025-08-21T14:43:57Z</dc:date>
    </item>
    <item>
      <title>Re: Running Totals</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Totals/m-p/4804065#M183754</link>
      <description>&lt;P&gt;Hey,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your response, but I'm still having a issue.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So, I created your measure and got this:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Which is great!&lt;/P&gt;&lt;P&gt;What would I have to do to get a column that shows the total by month per user?&lt;/P&gt;&lt;P&gt;For instance, under Staley, a column next to "running total" would be month "monthly total" where&lt;/P&gt;&lt;P&gt;Sept-24 = 2&lt;/P&gt;&lt;P&gt;Aug-24 = 2&lt;/P&gt;&lt;P&gt;Dec-23 = 5&lt;/P&gt;&lt;P&gt;Oct-23&amp;nbsp; = 1&lt;/P&gt;</description>
      <pubDate>Thu, 21 Aug 2025 18:02:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Totals/m-p/4804065#M183754</guid>
      <dc:creator>e175429</dc:creator>
      <dc:date>2025-08-21T18:02:08Z</dc:date>
    </item>
    <item>
      <title>Re: Running Totals</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Totals/m-p/4804384#M183770</link>
      <description>&lt;P&gt;Power BI (DAX):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Running Total =&lt;BR /&gt;CALCULATE(&lt;BR /&gt;COUNTROWS('Table'),&lt;BR /&gt;FILTER(&lt;BR /&gt;ALLSELECTED('Table'),&lt;BR /&gt;'Table'[User] = MAX('Table'[User]) &amp;amp;&amp;amp;&lt;BR /&gt;'Table'[PaidDate] &amp;lt;= MAX('Table'[PaidDate])&lt;BR /&gt;)&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;SQL:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;COUNT(*) OVER (PARTITION BY [User] ORDER BY PaidDate) AS RunningTotal&lt;/P&gt;</description>
      <pubDate>Fri, 22 Aug 2025 03:38:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Totals/m-p/4804384#M183770</guid>
      <dc:creator>Shahid12523</dc:creator>
      <dc:date>2025-08-22T03:38:43Z</dc:date>
    </item>
    <item>
      <title>Re: Running Totals</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Totals/m-p/4805550#M183810</link>
      <description>&lt;P&gt;hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="531109" data-lia-user-login="e175429" class="lia-mention lia-mention-user"&gt;e175429&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Please share the sample data in plain text (currently ist an image and cant copy). will try to buiid the solution.&lt;/P&gt;</description>
      <pubDate>Sat, 23 Aug 2025 07:59:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Totals/m-p/4805550#M183810</guid>
      <dc:creator>Rupak_bi</dc:creator>
      <dc:date>2025-08-23T07:59:42Z</dc:date>
    </item>
    <item>
      <title>Re: Running Totals</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Totals/m-p/4808294#M183899</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="583487" data-lia-user-login="Rupak_bi" class="lia-mention lia-mention-user"&gt;Rupak_bi&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;A very samall portion of my actal data:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Date:&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; User:&lt;/P&gt;&lt;P&gt;7/1/2023&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Nervis&lt;/P&gt;&lt;P&gt;7/1/2023&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Nervis&lt;/P&gt;&lt;P&gt;7/1/2023&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Clay&lt;/P&gt;&lt;P&gt;7/3/2023&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Walter&lt;/P&gt;&lt;P&gt;7/3/2023&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Leveston&lt;/P&gt;&lt;P&gt;7/3/2023&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Leveston&lt;/P&gt;&lt;P&gt;7/3/2023&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Nervis&lt;/P&gt;&lt;P&gt;7/5/2023&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Clay&lt;/P&gt;&lt;P&gt;7/9/2023&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Clay&lt;/P&gt;&lt;P&gt;8/14/2023&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Walter&lt;/P&gt;&lt;P&gt;8/14/2023&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Leveston&lt;/P&gt;&lt;P&gt;8/14/2023&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Nervis&lt;/P&gt;&lt;P&gt;2/27/2024&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Clay&lt;/P&gt;&lt;P&gt;2/27/2024&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Leveston&lt;/P&gt;&lt;P&gt;2/27/2024&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Nervis&lt;/P&gt;&lt;P&gt;2/27/2024&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Walter&lt;/P&gt;&lt;P&gt;2/27/2024&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Leveston&lt;/P&gt;&lt;P&gt;2/27/2024&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Leveston&lt;/P&gt;&lt;P&gt;3/19/2024&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Clay&lt;/P&gt;</description>
      <pubDate>Tue, 26 Aug 2025 14:48:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Totals/m-p/4808294#M183899</guid>
      <dc:creator>e175429</dc:creator>
      <dc:date>2025-08-26T14:48:38Z</dc:date>
    </item>
    <item>
      <title>Re: Running Totals</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Totals/m-p/4808506#M183902</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="531109" data-lia-user-login="e175429" class="lia-mention lia-mention-user"&gt;e175429&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;In addition to what&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="583487" data-lia-user-login="Rupak_bi" class="lia-mention lia-mention-user"&gt;Rupak_bi&lt;/a&gt;&amp;nbsp;has said, you might look at using the RUNNINGSUM visual calculation. Here is some additional info:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.youtube.com/watch?v=pqfBH0ZmYkA" target="_blank"&gt;https://www.youtube.com/watch?v=pqfBH0ZmYkA&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Aug 2025 18:22:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Totals/m-p/4808506#M183902</guid>
      <dc:creator>djurecic</dc:creator>
      <dc:date>2025-08-26T18:22:10Z</dc:date>
    </item>
    <item>
      <title>Re: Running Totals</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Totals/m-p/4809495#M183938</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="531109" data-lia-user-login="e175429" class="lia-mention lia-mention-user"&gt;e175429&lt;/a&gt;&amp;nbsp;please try this&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;Running Total =&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;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;COUNTROWS&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;payments&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;FILTER&lt;/SPAN&gt;&lt;SPAN&gt; (&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;ALLEXCEPT&lt;/SPAN&gt;&lt;SPAN&gt; ( &lt;/SPAN&gt;&lt;SPAN&gt;payments&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;payments&lt;/SPAN&gt;&lt;SPAN&gt;[User]&lt;/SPAN&gt;&lt;SPAN&gt; ), &amp;nbsp; &lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;payments&lt;/SPAN&gt;&lt;SPAN&gt;[PaidDate]&lt;/SPAN&gt;&lt;SPAN&gt;&amp;lt;= &lt;/SPAN&gt;&lt;SPAN&gt;MAX&lt;/SPAN&gt;&lt;SPAN&gt; ( &lt;/SPAN&gt;&lt;SPAN&gt;payments&lt;/SPAN&gt;&lt;SPAN&gt;[PaidDate]&lt;/SPAN&gt;&lt;SPAN&gt; )&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; )&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;img /&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;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Wed, 27 Aug 2025 21:01:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Totals/m-p/4809495#M183938</guid>
      <dc:creator>techies</dc:creator>
      <dc:date>2025-08-27T21:01:13Z</dc:date>
    </item>
    <item>
      <title>Re: Running Totals</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Totals/m-p/4811349#M183988</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="531109" data-lia-user-login="e175429" class="lia-mention lia-mention-user"&gt;e175429&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;SPAN data-teams="true"&gt;hope you are doing great. May we know if your issue is solved or if you are still experiencing difficulties. Please share the details as it will help the community, especially others with similar issues.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 29 Aug 2025 09:16:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Totals/m-p/4811349#M183988</guid>
      <dc:creator>v-hashadapu</dc:creator>
      <dc:date>2025-08-29T09:16:58Z</dc:date>
    </item>
    <item>
      <title>Re: Running Totals</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Totals/m-p/4811399#M183990</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="531109" data-lia-user-login="e175429" class="lia-mention lia-mention-user"&gt;e175429&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Sorry for delayed response.&lt;/P&gt;
&lt;P&gt;Please see below results. Let me know if these are in line. else will modify.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Attaching PBIX as well. Accept if works.....&lt;/P&gt;</description>
      <pubDate>Fri, 29 Aug 2025 09:37:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Totals/m-p/4811399#M183990</guid>
      <dc:creator>Rupak_bi</dc:creator>
      <dc:date>2025-08-29T09:37:14Z</dc:date>
    </item>
    <item>
      <title>Re: Running Totals</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Totals/m-p/4813235#M184043</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="531109" data-lia-user-login="e175429" class="lia-mention lia-mention-user"&gt;e175429&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;SPAN data-teams="true"&gt;Hope you're doing fine. Can you confirm if the problem is solved or still persists? Sharing your details will help others in the community.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Sep 2025 09:36:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Totals/m-p/4813235#M184043</guid>
      <dc:creator>v-hashadapu</dc:creator>
      <dc:date>2025-09-01T09:36:22Z</dc:date>
    </item>
  </channel>
</rss>

