<?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 with multiple Measures in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Total-with-multiple-Measures/m-p/3222873#M117888</link>
    <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="317289" data-lia-user-login="tamerj1" class="lia-mention lia-mention-user"&gt;tamerj1&lt;/a&gt;&amp;nbsp;!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for reply. Your code is a partial solution for this. Note that, I need from Measure1 (Start Value) add/subtract values of Measures 2 (Breakdowns).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Your code works for only one measure... but I need to start from one measure and add/subtract with the other one.&lt;/P&gt;</description>
    <pubDate>Fri, 05 May 2023 21:58:09 GMT</pubDate>
    <dc:creator>vanSiq01</dc:creator>
    <dc:date>2023-05-05T21:58:09Z</dc:date>
    <item>
      <title>Running Total with multiple Measures</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Total-with-multiple-Measures/m-p/3222811#M117878</link>
      <description>&lt;P&gt;Hi!!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've been struggling to solve this problem for a few days now. I wanted to calculate a moving sum with multiple measures. I've create an Excel example for it:&amp;nbsp;&lt;A href="https://docs.google.com/spreadsheets/d/1eQPCAfn-hQAf4a75c70yyaJQe9czB_M9oOcd8AgmEtc/edit?usp=share_link" target="_self"&gt;Excel Example&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;In other words, I have a measure called Measure1 and I wanted to accumulate the values of Measure2 starting from it.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;However, this accumulation has to follow the operation highlighted in column C. That is, the lines Start Value and Breakdown 1 should be added and from there all the following values should be subtracted.&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;In the end, it would be something like this: (Start Value + Breakdown 1) - Sum of all other Breakdowns.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The only requirement that need to be done only with measures and not with calculated columns.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 05 May 2023 21:35:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Total-with-multiple-Measures/m-p/3222811#M117878</guid>
      <dc:creator>vanSiq01</dc:creator>
      <dc:date>2023-05-05T21:35:24Z</dc:date>
    </item>
    <item>
      <title>Re: Running Total with multiple Measures</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Total-with-multiple-Measures/m-p/3222861#M117886</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="556396" data-lia-user-login="vanSiq01" class="lia-mention lia-mention-user"&gt;vanSiq01&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please try&lt;/P&gt;
&lt;P&gt;Accumulated Value =&lt;BR /&gt;SUMX (&lt;BR /&gt;FILTER ( 'Table', 'Table'[Index] &amp;lt;= EARLIER ( 'Table'[Index] ) ),&lt;BR /&gt;IF ( 'Table'[Operation] = "+", 1, -1 ) * 'Table'[Base Value]&lt;BR /&gt;)&lt;/P&gt;</description>
      <pubDate>Fri, 05 May 2023 21:04:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Total-with-multiple-Measures/m-p/3222861#M117886</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-05-05T21:04:38Z</dc:date>
    </item>
    <item>
      <title>Re: Running Total with multiple Measures</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Total-with-multiple-Measures/m-p/3222873#M117888</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="317289" data-lia-user-login="tamerj1" class="lia-mention lia-mention-user"&gt;tamerj1&lt;/a&gt;&amp;nbsp;!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for reply. Your code is a partial solution for this. Note that, I need from Measure1 (Start Value) add/subtract values of Measures 2 (Breakdowns).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Your code works for only one measure... but I need to start from one measure and add/subtract with the other one.&lt;/P&gt;</description>
      <pubDate>Fri, 05 May 2023 21:58:09 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Total-with-multiple-Measures/m-p/3222873#M117888</guid>
      <dc:creator>vanSiq01</dc:creator>
      <dc:date>2023-05-05T21:58:09Z</dc:date>
    </item>
    <item>
      <title>Re: Running Total with multiple Measures</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Total-with-multiple-Measures/m-p/3223126#M117921</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="556396" data-lia-user-login="vanSiq01" class="lia-mention lia-mention-user"&gt;vanSiq01&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;I followed what you have presented. You have presented everything in a table but you never mentioned whether it is a data table or a table visual. You did not provide any description of your data, &lt;SPAN&gt;rather you just presented a data in an excel sheet!&lt;/SPAN&gt;&amp;nbsp;Therefore, I assumed that this is a data table. Based on that, I have proposed my solution. If I have the wrong understanding then please clarify.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 06 May 2023 09:33:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Total-with-multiple-Measures/m-p/3223126#M117921</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-05-06T09:33:27Z</dc:date>
    </item>
  </channel>
</rss>

