<?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 Sum Formula Not Working in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Sum-Formula-Not-Working/m-p/4688243#M179549</link>
    <description>&lt;P&gt;&lt;SPAN&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1253725" data-lia-user-login="GosiaPio2506" class="lia-mention lia-mention-user"&gt;GosiaPio2506&lt;/a&gt;&amp;nbsp;,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;May I ask if you have resolved this issue? If so, please mark the helpful reply and accept it as the solution. This will be helpful for other community members who have similar problems to solve it faster.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thank you.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 12 May 2025 04:58:28 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2025-05-12T04:58:28Z</dc:date>
    <item>
      <title>Running Sum Formula Not Working</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Sum-Formula-Not-Working/m-p/4674889#M179038</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;I have an issue with my running sum formula. My result is supposed to be the sum from the past 3 months. For example, in April, I want to get the sum for the period Jan-Mar; in May, I want to get the sum for the period Feb-Apr, etc. However, for some reason, this formula is only returning the sum for the current month.&lt;/P&gt;&lt;P&gt;I need to add that the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;startDate&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;variable is returning correct values only when the formula is excluding blanks.&lt;/P&gt;&lt;P&gt;Any idea why it is not working and what I should do to make it work?&lt;BR /&gt;Thank you,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;!--  ScriptorStartFragment  --&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV class=""&gt;Running Sum Test&amp;nbsp;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;currDate&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;MAX&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Sales'&lt;/SPAN&gt;&lt;SPAN&gt;[&lt;/SPAN&gt;&lt;SPAN&gt;Date&lt;/SPAN&gt;&lt;SPAN&gt;]&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;startDate&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;EDATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;IF&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;ISBLANK&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;currDate&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt; &lt;SPAN&gt;BLANK&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt; &lt;SPAN&gt;DATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;YEAR&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;currDate&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt; &lt;SPAN&gt;MONTH&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;currDate&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt; &lt;SPAN&gt;1&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt; &lt;SPAN&gt;-&lt;/SPAN&gt;&lt;SPAN&gt;3&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;endDate&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt; &lt;SPAN&gt;EOMONTH&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;currDate&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt; &lt;SPAN&gt;-&lt;/SPAN&gt;&lt;SPAN&gt;1&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;period&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;DATESBETWEEN&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Sales'&lt;/SPAN&gt;&lt;SPAN&gt;[&lt;/SPAN&gt;&lt;SPAN&gt;Date&lt;/SPAN&gt;&lt;SPAN&gt;]&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt; &lt;SPAN&gt;startDate&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt; &lt;SPAN&gt;endDate&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;NetAmount&lt;/SPAN&gt; &lt;SPAN&gt;=&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;SUM&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Sales'&lt;/SPAN&gt;&lt;SPAN&gt;[&lt;/SPAN&gt;&lt;SPAN&gt;Net&lt;/SPAN&gt; &lt;SPAN&gt;Amount&lt;/SPAN&gt;&lt;SPAN&gt;]&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;SPAN&gt;RETURN&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;CALCUL&lt;/SPAN&gt;&lt;SPAN&gt;ATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;NetAmount&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt; &lt;SPAN&gt;FILTER&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Sales'&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt; &lt;SPAN&gt;'Sales'&lt;/SPAN&gt;&lt;SPAN&gt;[&lt;/SPAN&gt;&lt;SPAN&gt;Date&lt;/SPAN&gt;&lt;SPAN&gt;]&lt;/SPAN&gt; &lt;SPAN&gt;IN&lt;/SPAN&gt; &lt;SPAN&gt;period&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;P&gt;&lt;SPAN&gt;&lt;!--  ScriptorEndFragment  --&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Apr 2025 14:10:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Sum-Formula-Not-Working/m-p/4674889#M179038</guid>
      <dc:creator>GosiaPio2506</dc:creator>
      <dc:date>2025-04-30T14:10:33Z</dc:date>
    </item>
    <item>
      <title>Re: Running Sum Formula Not Working</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Sum-Formula-Not-Working/m-p/4675012#M179042</link>
      <description>&lt;P&gt;Variables in DAX aren't really variable, they are constants, only evaluated when they are defined, so when you include the NetAmount variable in CALCULATE it isn't being recalculated.&lt;/P&gt;
&lt;P&gt;Try&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Running Sum Test =
VAR currDate =
    MAX ( 'Sales'[Date] )
VAR startDate =
    EDATE (
        IF (
            ISBLANK ( currDate ),
            BLANK (),
            DATE ( YEAR ( currDate ), MONTH ( currDate ), 1 )
        ),
        -3
    )
VAR endDate =
    EOMONTH ( currDate, -1 )
VAR period =
    DATESBETWEEN ( 'Sales'[Date], startDate, endDate )
RETURN
    CALCULATE ( SUM ( 'Sales'[Net Amount] ), 'Sales'[Date] IN period )
&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 30 Apr 2025 15:28:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Sum-Formula-Not-Working/m-p/4675012#M179042</guid>
      <dc:creator>johnt75</dc:creator>
      <dc:date>2025-04-30T15:28:20Z</dc:date>
    </item>
    <item>
      <title>Re: Running Sum Formula Not Working</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Sum-Formula-Not-Working/m-p/4677057#M179120</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1253725" data-lia-user-login="GosiaPio2506" class="lia-mention lia-mention-user"&gt;GosiaPio2506&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Thank you for reaching out to the Microsoft Fabric Community Forum.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've reviewed your issue and can confirm that&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="240987" data-lia-user-login="johnt75" class="lia-mention lia-mention-user"&gt;johnt75&lt;/a&gt;&amp;nbsp; guidance is correct.&lt;/P&gt;
&lt;P&gt;The main issue with your original formula is the use of the NetAmount variable. In DAX, variables are static within their evaluation context and do not dynamically respond to changes in filter context when used inside a CALCULATE function. Consequently, defining NetAmount outside of CALCULATE prevents it from being influenced by the date filters applied within.&lt;/P&gt;
&lt;P&gt;The corrected formula suggested by the Super User resolves this by placing SUM('Sales'[Net Amount]) directly inside the CALCULATE function. This ensures the expression is dynamically evaluated based on the date range filters, accurately reflecting the running total for the 3-month period prior to the current month.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this post&amp;nbsp;helps, then please give us Kudos and consider&amp;nbsp;Accept it as a solution&amp;nbsp;to help the other members find it more quickly.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thankyou.&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 02 May 2025 07:41:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Sum-Formula-Not-Working/m-p/4677057#M179120</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-05-02T07:41:24Z</dc:date>
    </item>
    <item>
      <title>Re: Running Sum Formula Not Working</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Sum-Formula-Not-Working/m-p/4677595#M179151</link>
      <description>&lt;P&gt;Thank you Johnt75,&lt;BR /&gt;I do get an error on the return line.&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;RETURN
    CALCULATE ( SUM ( 'Sales'[Net Amount] ), 'Sales'[Date] IN period )&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;the last part which is 'Sales'[Date] IN period is giving an error and I have no value returned. Do you think it might have to do with the format of the data? In fact PowerBI doesn't even let me put 'Sales'[Date] column in the formula.&lt;BR /&gt;Any idea why it is acting like that?&lt;/P&gt;</description>
      <pubDate>Fri, 02 May 2025 12:02:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Sum-Formula-Not-Working/m-p/4677595#M179151</guid>
      <dc:creator>GosiaPio2506</dc:creator>
      <dc:date>2025-05-02T12:02:56Z</dc:date>
    </item>
    <item>
      <title>Re: Running Sum Formula Not Working</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Sum-Formula-Not-Working/m-p/4678447#M179188</link>
      <description>&lt;P&gt;Try this DAX&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Running Sum Test =
VAR currDate = MAX('Sales'[Date])
VAR startDate = EDATE(DATE(YEAR(currDate), MONTH(currDate), 1), -3)
VAR endDate = EOMONTH(currDate, -1)
VAR period = DATESBETWEEN('Sales'[Date], startDate, endDate)

RETURN
    CALCULATE(
        SUM('Sales'[Net Amount]),
        FILTER(
            ALL('Sales'[Date]),  // ensures proper context removal
            'Sales'[Date] IN period
        )
    )&lt;/LI-CODE&gt;</description>
      <pubDate>Sat, 03 May 2025 12:11:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Sum-Formula-Not-Working/m-p/4678447#M179188</guid>
      <dc:creator>aduguid</dc:creator>
      <dc:date>2025-05-03T12:11:44Z</dc:date>
    </item>
    <item>
      <title>Re: Running Sum Formula Not Working</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Sum-Formula-Not-Working/m-p/4679591#M179241</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1253725" data-lia-user-login="GosiaPio2506" class="lia-mention lia-mention-user"&gt;GosiaPio2506&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You're correct, the issue is due to the use of 'Sales'[Date] IN period outside of a valid row context. In DAX, this needs to be wrapped within a FILTER() function to evaluate properly.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As correctly pointed out by &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="81736" data-lia-user-login="aduguid" class="lia-mention lia-mention-user"&gt;aduguid&lt;/a&gt;&amp;nbsp;, the formula below addresses this by introducing the necessary context handling:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Running Sum Test =
VAR currDate = MAX('Sales'[Date])
VAR startDate = EDATE(DATE(YEAR(currDate), MONTH(currDate), 1), -3)
VAR endDate = EOMONTH(currDate, -1)
VAR period = DATESBETWEEN('Sales'[Date], startDate, endDate)

RETURN
    CALCULATE(
        SUM('Sales'[Net Amount]),
        FILTER(
            ALL('Sales'[Date]),
            'Sales'[Date] IN period
        )
    )
&lt;/LI-CODE&gt;
&lt;P&gt;This should return the correct 3-month running total as expected.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this post&amp;nbsp;helps, then please give us Kudos and consider&amp;nbsp;Accept it as a solution&amp;nbsp;to help the other members find it more quickly.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thankyou.&lt;/P&gt;</description>
      <pubDate>Mon, 05 May 2025 06:58:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Sum-Formula-Not-Working/m-p/4679591#M179241</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-05-05T06:58:42Z</dc:date>
    </item>
    <item>
      <title>Re: Running Sum Formula Not Working</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Sum-Formula-Not-Working/m-p/4685821#M179469</link>
      <description>&lt;P&gt;&lt;SPAN data-teams="true"&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1253725" data-lia-user-login="GosiaPio2506" class="lia-mention lia-mention-user"&gt;GosiaPio2506&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;I wanted to check if you had the opportunity to review the information provided. Please feel free to contact us if you have any further questions. If my response has addressed your query, please accept it as a solution and give a 'Kudos' so other members can easily find it.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-teams="true"&gt;&lt;BR /&gt;Thank you.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 09 May 2025 04:09:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Sum-Formula-Not-Working/m-p/4685821#M179469</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-05-09T04:09:12Z</dc:date>
    </item>
    <item>
      <title>Re: Running Sum Formula Not Working</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Sum-Formula-Not-Working/m-p/4688243#M179549</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1253725" data-lia-user-login="GosiaPio2506" class="lia-mention lia-mention-user"&gt;GosiaPio2506&lt;/a&gt;&amp;nbsp;,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;May I ask if you have resolved this issue? If so, please mark the helpful reply and accept it as the solution. This will be helpful for other community members who have similar problems to solve it faster.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thank you.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 12 May 2025 04:58:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Sum-Formula-Not-Working/m-p/4688243#M179549</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-05-12T04:58:28Z</dc:date>
    </item>
    <item>
      <title>Re: Running Sum Formula Not Working</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Sum-Formula-Not-Working/m-p/4694274#M179775</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi&amp;nbsp;&lt;A href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1253725" target="_blank"&gt;@GosiaPio2506&lt;/A&gt;&amp;nbsp;,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;May I ask if you have resolved this issue? If so, please mark the helpful reply and accept it as the solution. This will be helpful for other community members who have similar problems to solve it faster.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thank you.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 15 May 2025 12:31:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Sum-Formula-Not-Working/m-p/4694274#M179775</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-05-15T12:31:21Z</dc:date>
    </item>
    <item>
      <title>Re: Running Sum Formula Not Working</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Sum-Formula-Not-Working/m-p/4694309#M179776</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;No, we decided to go with different approach and not calculate this in Power BI. I believe that there is an issue with the data and this is why the formulas are not working.&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Thu, 15 May 2025 12:35:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Sum-Formula-Not-Working/m-p/4694309#M179776</guid>
      <dc:creator>GosiaPio2506</dc:creator>
      <dc:date>2025-05-15T12:35:32Z</dc:date>
    </item>
    <item>
      <title>Re: Running Sum Formula Not Working</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Sum-Formula-Not-Working/m-p/4697539#M179917</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1253725" data-lia-user-login="GosiaPio2506" class="lia-mention lia-mention-user"&gt;GosiaPio2506&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Thank you for the update. I understand you've decided to go with a different approach.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I appreciate the effort you've put into trying to resolve the issue. As you mentioned, it does seem likely that the data inconsistencies are affecting the formulas in Power BI.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you happen to find a solution on your side, please feel free to share it here it would be helpful for the other people in the community.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 19 May 2025 03:55:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Sum-Formula-Not-Working/m-p/4697539#M179917</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-05-19T03:55:30Z</dc:date>
    </item>
  </channel>
</rss>

