<?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: Creation of a running total with change between two data series in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Creation-of-a-running-total-with-change-between-two-data-series/m-p/2990129#M100574</link>
    <description>&lt;P&gt;Thanks for your message &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="148838" data-lia-user-login="amitchandak" class="lia-mention lia-mention-user"&gt;amitchandak&lt;/a&gt;&amp;nbsp;. I want to create a running total from the data, which should sum the values of one data series up to a certain date and then continue to sum the values of another data series. Before the change, the second data series should be ignored and after the change, the first data series should be ignored to avoid a gap or jump in the line.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 27 Dec 2022 12:22:55 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2022-12-27T12:22:55Z</dc:date>
    <item>
      <title>Creation of a running total with change between two data series</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Creation-of-a-running-total-with-change-between-two-data-series/m-p/2990051#M100560</link>
      <description>&lt;P&gt;Good morning,&lt;BR /&gt;I want to create a running total that changes from data series 1 to data series 2 at a certain date.&lt;BR /&gt;As an example, a forecast could be used, which adds up the actual costs until a defined date and then continues to add up the planned costs. This should result in an S-curve, which shows the actual values with a solid line up to this defined point in time and then indicates the planned values with a dashed line.&lt;/P&gt;&lt;P&gt;How could I implement this?&lt;/P&gt;&lt;P&gt;Love greetings &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Dec 2022 11:41:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Creation-of-a-running-total-with-change-between-two-data-series/m-p/2990051#M100560</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-12-27T11:41:31Z</dc:date>
    </item>
    <item>
      <title>Re: Creation of a running total with change between two data series</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Creation-of-a-running-total-with-change-between-two-data-series/m-p/2990080#M100563</link>
      <description>&lt;P&gt;Anonymous&lt;/a&gt; , if you use date table the both series will have their won running total &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cumm Sales = CALCULATE(SUM(Sales[Sales Amount]),filter(all('Date'),'Date'[date] &amp;lt;=max('Date'[date])))&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;or&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cumm Sales = CALCULATE(SUM(Sales[Sales Amount]),filter(allselected(date),date[date] &amp;lt;=max(date[Date])))&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can also consider window function&lt;/P&gt;
&lt;P&gt;Power BI Window function Rolling, Cumulative/Running Total, WTD, MTD, QTD, YTD, FYTD: &lt;A href="https://youtu.be/nxc_IWl-tTc" target="_blank"&gt;https://youtu.be/nxc_IWl-tTc&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Running Total/ Cumulative: &lt;A href="https://www.youtube.com/watch?v=h2wsO332LUo&amp;amp;list=PLPaNVDMhUXGaaqV92SBD5X2hk3TMNlHhb&amp;amp;index=41" target="_blank"&gt;https://www.youtube.com/watch?v=h2wsO332LUo&amp;amp;list=PLPaNVDMhUXGaaqV92SBD5X2hk3TMNlHhb&amp;amp;index=41&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Dec 2022 11:52:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Creation-of-a-running-total-with-change-between-two-data-series/m-p/2990080#M100563</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2022-12-27T11:52:28Z</dc:date>
    </item>
    <item>
      <title>Re: Creation of a running total with change between two data series</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Creation-of-a-running-total-with-change-between-two-data-series/m-p/2990129#M100574</link>
      <description>&lt;P&gt;Thanks for your message &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="148838" data-lia-user-login="amitchandak" class="lia-mention lia-mention-user"&gt;amitchandak&lt;/a&gt;&amp;nbsp;. I want to create a running total from the data, which should sum the values of one data series up to a certain date and then continue to sum the values of another data series. Before the change, the second data series should be ignored and after the change, the first data series should be ignored to avoid a gap or jump in the line.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Dec 2022 12:22:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Creation-of-a-running-total-with-change-between-two-data-series/m-p/2990129#M100574</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-12-27T12:22:55Z</dc:date>
    </item>
    <item>
      <title>Re: Creation of a running total with change between two data series</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Creation-of-a-running-total-with-change-between-two-data-series/m-p/2990998#M100628</link>
      <description>&lt;P&gt;hi Anonymous&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;for your reference:&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.daxpatterns.com/budget/" target="_blank"&gt;https://www.daxpatterns.com/budget/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Dec 2022 02:47:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Creation-of-a-running-total-with-change-between-two-data-series/m-p/2990998#M100628</guid>
      <dc:creator>FreemanZ</dc:creator>
      <dc:date>2022-12-28T02:47:16Z</dc:date>
    </item>
  </channel>
</rss>

