<?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 Rolling balance in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-balance/m-p/3994881#M155143</link>
    <description>&lt;P&gt;Hello Fellow Analysts,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;I have a issue with the rolling balance row as shown in the picture. i want the balance( a measure) to become cumulative in the rolling balance row. In March 2024 it should show 8796, april 2024- 17235 (8796+8439) and so on. I cant unpivot the table to achieve this. Any other ideas on how this can work?&lt;img /&gt;&lt;/P&gt;</description>
    <pubDate>Sun, 16 Jun 2024 15:49:32 GMT</pubDate>
    <dc:creator>Swizal</dc:creator>
    <dc:date>2024-06-16T15:49:32Z</dc:date>
    <item>
      <title>Rolling balance</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-balance/m-p/3994881#M155143</link>
      <description>&lt;P&gt;Hello Fellow Analysts,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;I have a issue with the rolling balance row as shown in the picture. i want the balance( a measure) to become cumulative in the rolling balance row. In March 2024 it should show 8796, april 2024- 17235 (8796+8439) and so on. I cant unpivot the table to achieve this. Any other ideas on how this can work?&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 16 Jun 2024 15:49:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-balance/m-p/3994881#M155143</guid>
      <dc:creator>Swizal</dc:creator>
      <dc:date>2024-06-16T15:49:32Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling balance</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-balance/m-p/3994895#M155145</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="760874" data-lia-user-login="Swizal" class="lia-mention lia-mention-user"&gt;Swizal&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;You can follow this pattern for rolling sum&amp;nbsp;&lt;BR /&gt;&lt;A href="https://www.sqlbi.com/articles/computing-running-totals-in-dax/" target="_blank"&gt;https://www.sqlbi.com/articles/computing-running-totals-in-dax/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;DIV&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;P&gt;Need Power BI consultation, hire me on &lt;A href="https://bit.ly/3xjhn8C" target="_blank"&gt;UpWork &lt;/A&gt;.&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;If the post helps please give a thumbs up&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;P&gt;If it solves your issue, please accept it as the solution to help the other members find it more quickly.&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;P&gt;Tharun&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/DIV&gt;</description>
      <pubDate>Sun, 16 Jun 2024 16:40:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-balance/m-p/3994895#M155145</guid>
      <dc:creator>tharunkumarRTK</dc:creator>
      <dc:date>2024-06-16T16:40:41Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling balance</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-balance/m-p/3994920#M155147</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="760874" data-lia-user-login="Swizal" class="lia-mention lia-mention-user"&gt;Swizal&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Try below measure&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Measure = 
SUMX(
    FILTER(
        ALL('Table'),
        'Table'[Dtae]&amp;lt;=MAX('Table'[Dtae])
    ),
        [Value]
)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Dangar&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;If this post&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;&lt;EM&gt;helps&lt;/EM&gt;&lt;/STRONG&gt;, then please consider Accept it&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;&lt;EM&gt;as the solution&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/EM&gt;&lt;/STRONG&gt;to help the other members find it more quickly.&lt;/P&gt;</description>
      <pubDate>Sun, 16 Jun 2024 17:32:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-balance/m-p/3994920#M155147</guid>
      <dc:creator>Dangar332</dc:creator>
      <dc:date>2024-06-16T17:32:33Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling balance</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-balance/m-p/3996535#M155320</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="569583" data-lia-user-login="Dangar332" class="lia-mention lia-mention-user"&gt;Dangar332&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;Thankyou for your inputs. It may seem that there is only one context of date ,except ,there is another context of the supplier. and a few more slicers like (line item, planner name) which comes into play. Please find the below snippet of the same.&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Jun 2024 16:01:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-balance/m-p/3996535#M155320</guid>
      <dc:creator>Swizal</dc:creator>
      <dc:date>2024-06-17T16:01:56Z</dc:date>
    </item>
    <item>
      <title>Re: Rolling balance</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-balance/m-p/3997519#M155449</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="760874" data-lia-user-login="Swizal" class="lia-mention lia-mention-user"&gt;Swizal&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;try below measure&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Measure = 
SUMX(
    FILTER(
        ALL('Table'[Dtae],'Table'[Value],'Table'[Name],'Table'[Supplier Line]),
        'Table'[Dtae]&amp;lt;=MAX('Table'[Dtae]) &amp;amp;&amp;amp; 
        'Table'[Name]=MIN('Table'[Name])  &amp;amp;&amp;amp;
        'Table'[Supplier Line]=min('Table'[Name])
    ),
        [Value]
)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Dangar&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;If this post&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;&lt;EM&gt;helps&lt;/EM&gt;&lt;/STRONG&gt;, then please consider Accept it&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;&lt;EM&gt;as the solution&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/EM&gt;&lt;/STRONG&gt;to help the other members find it more quickly.&lt;/P&gt;</description>
      <pubDate>Tue, 18 Jun 2024 06:00:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Rolling-balance/m-p/3997519#M155449</guid>
      <dc:creator>Dangar332</dc:creator>
      <dc:date>2024-06-18T06:00:35Z</dc:date>
    </item>
  </channel>
</rss>

