<?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 Total in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Total/m-p/3712800#M144463</link>
    <description>&lt;P&gt;Running total can be easily achieved using the method shown in this video .Hope this helps .&lt;/P&gt;&lt;P&gt;&lt;A href="https://youtu.be/NBGGHdKxupk" target="_blank"&gt;https://youtu.be/NBGGHdKxupk&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There is also a method&amp;nbsp; for a non date value :&amp;nbsp;&lt;A href="https://youtu.be/85sKPSnc_GE" target="_blank"&gt;https://youtu.be/85sKPSnc_GE&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 21 Feb 2024 02:36:33 GMT</pubDate>
    <dc:creator>powerbi_zone</dc:creator>
    <dc:date>2024-02-21T02:36:33Z</dc:date>
    <item>
      <title>Running Total</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Total/m-p/3637360#M140740</link>
      <description>&lt;P&gt;Hi I have a table named 'Kartela' with posting date and amount i need to build a measure according to other solutions in the comunity but it does not completely work . When I keep the table simple it works&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;but when i add more info like the remarks of the movement is not working&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;any idea how to fix it ?&lt;/P&gt;&lt;P&gt;thea measure is&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Running Total =&lt;/SPAN&gt; &lt;SPAN&gt;Calculate&lt;/SPAN&gt;&lt;SPAN&gt; ( &lt;/SPAN&gt;&lt;SPAN&gt;SUM&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;kartela&lt;/SPAN&gt;&lt;SPAN&gt;[blc]&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;ALL&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'kartela'&lt;/SPAN&gt;&lt;SPAN&gt;[Posting Date]&lt;/SPAN&gt;&lt;SPAN&gt; ),&lt;/SPAN&gt;&lt;SPAN&gt;'kartela'&lt;/SPAN&gt;&lt;SPAN&gt;[Posting Date]&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;'kartela'&lt;/SPAN&gt;&lt;SPAN&gt;[Posting Date]&lt;/SPAN&gt;&lt;SPAN&gt;)))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Sat, 13 Jan 2024 21:59:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Total/m-p/3637360#M140740</guid>
      <dc:creator>vaso</dc:creator>
      <dc:date>2024-01-13T21:59:34Z</dc:date>
    </item>
    <item>
      <title>Re: Running Total</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Total/m-p/3637455#M140746</link>
      <description>&lt;P&gt;HI, I am not sure how your desired outcome looks like, but try something like below whether it suits your requirement.&lt;/P&gt;
&lt;P&gt;It is the running total by Remarks.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Running Total =
CALCULATE (
    SUM ( kartela[blc] ),
    FILTER (
        ALL ( 'kartela' ),
        kartela[Remarks] = MAX ( kartela[Remarks] )
            &amp;amp;&amp;amp; 'kartela'[Posting Date] &amp;lt;= MAX ( 'kartela'[Posting Date] )
    )
)
&lt;/LI-CODE&gt;</description>
      <pubDate>Sun, 14 Jan 2024 04:07:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Total/m-p/3637455#M140746</guid>
      <dc:creator>Jihwan_Kim</dc:creator>
      <dc:date>2024-01-14T04:07:13Z</dc:date>
    </item>
    <item>
      <title>Re: Running Total</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Total/m-p/3712800#M144463</link>
      <description>&lt;P&gt;Running total can be easily achieved using the method shown in this video .Hope this helps .&lt;/P&gt;&lt;P&gt;&lt;A href="https://youtu.be/NBGGHdKxupk" target="_blank"&gt;https://youtu.be/NBGGHdKxupk&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There is also a method&amp;nbsp; for a non date value :&amp;nbsp;&lt;A href="https://youtu.be/85sKPSnc_GE" target="_blank"&gt;https://youtu.be/85sKPSnc_GE&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Feb 2024 02:36:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Total/m-p/3712800#M144463</guid>
      <dc:creator>powerbi_zone</dc:creator>
      <dc:date>2024-02-21T02:36:33Z</dc:date>
    </item>
  </channel>
</rss>

