<?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: Dax Running total after certain Month in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-Running-total-after-certain-Month/m-p/1129190#M16699</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="177566" data-lia-user-login="speedramps" class="lia-mention lia-mention-user"&gt;speedramps&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have now removed the filters from Power Query. I am getting the correct totals. But for every product it is duplicating the total after March.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Could you advise?&lt;/P&gt;</description>
    <pubDate>Fri, 29 May 2020 11:40:36 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2020-05-29T11:40:36Z</dc:date>
    <item>
      <title>Dax Running total after certain Month</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-Running-total-after-certain-Month/m-p/1127520#M16662</link>
      <description>&lt;P&gt;Hi Guys,&lt;/P&gt;&lt;P&gt;Please could you help with a calculation i need.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to calculate Row &lt;STRONG&gt;B&lt;/STRONG&gt;. Row&lt;STRONG&gt; B&lt;/STRONG&gt; turns into a rolling total after March&lt;/P&gt;&lt;TABLE border="0" cellspacing="0" cellpadding="0"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;Jan&lt;/TD&gt;&lt;TD&gt;Feb&lt;/TD&gt;&lt;TD&gt;Mar&lt;/TD&gt;&lt;TD&gt;Apr&lt;/TD&gt;&lt;TD&gt;May&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;15&lt;/TD&gt;&lt;TD&gt;8&lt;/TD&gt;&lt;TD&gt;40&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;STRONG&gt;B&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;15&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;8&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;40&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;42&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;46&lt;/STRONG&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;Row A is Sum(Sales)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a Dax formula that will allow me to do this?&amp;nbsp;&lt;/P&gt;&lt;P&gt;Would be helpful to have a hard code formula. And a dynamic formula which calcs a running total after the current month&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you in advance! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 28 May 2020 20:51:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-Running-total-after-certain-Month/m-p/1127520#M16662</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-05-28T20:51:55Z</dc:date>
    </item>
    <item>
      <title>Re: Dax Running total after certain Month</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-Running-total-after-certain-Month/m-p/1127811#M16666</link>
      <description>&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Hi aaron&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Please consider this solution and leave kudos ..&lt;BR /&gt;&lt;BR /&gt;Cummulative total = &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;VAR mydynamicdate = DATEVALUE("1/3/2020")&amp;nbsp; -- set the start date dynamically&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;VAR mymaxdate = MAX(Sales[Date])&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;-- this calcs the max date each month to improves performance&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;VAR totalqty=SUM(Sales[Qty])&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;VAR cummulativeqty=&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;CALCULATE(SUM(Sales[Qty]),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;FILTER(ALL(Sales),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Sales[Date]&amp;gt;=mydynamicdate &amp;amp;&amp;amp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Sales[Date]&amp;lt;=mymaxdate))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;RETURN&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;If(mymaxdate&amp;lt;mydynamicdate,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;totalqty,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;cummulativeqty)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 28 May 2020 21:45:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-Running-total-after-certain-Month/m-p/1127811#M16666</guid>
      <dc:creator>speedramps</dc:creator>
      <dc:date>2020-05-28T21:45:22Z</dc:date>
    </item>
    <item>
      <title>Re: Dax Running total after certain Month</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-Running-total-after-certain-Month/m-p/1128800#M16685</link>
      <description>&lt;P&gt;Hi Unfortunately it didnt work....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So I am trying to calculate the running total after a certain month. But its a little complicated. The months after March are forecasted and need to be running totals from the previous month. So April should be 3500 for Trousers from the example below. However in the raw data it is actually 500. Is there a way to manipulate the data like this without affecting the prior months?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;-Sales Field&lt;/P&gt;&lt;P&gt;-Date Field&lt;/P&gt;&lt;P&gt;-Product Field&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I do have a date field and is linked to a calendar. I have 2 tables one is sales and other is calendar. Product field is in Sales&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Product&lt;/TD&gt;&lt;TD&gt;jan&lt;/TD&gt;&lt;TD&gt;feb&lt;/TD&gt;&lt;TD&gt;mar&lt;/TD&gt;&lt;TD&gt;apr&lt;/TD&gt;&lt;TD&gt;may&lt;/TD&gt;&lt;TD&gt;jun&lt;/TD&gt;&lt;TD&gt;jul&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Trousers (Current)&lt;/TD&gt;&lt;TD&gt;2000&lt;/TD&gt;&lt;TD&gt;4000&lt;/TD&gt;&lt;TD&gt;3000&lt;/TD&gt;&lt;TD&gt;500&lt;/TD&gt;&lt;TD&gt;600&lt;/TD&gt;&lt;TD&gt;800&lt;/TD&gt;&lt;TD&gt;100&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;Trousers (Desired)&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;2000&lt;/TD&gt;&lt;TD&gt;4000&lt;/TD&gt;&lt;TD&gt;3000&lt;/TD&gt;&lt;TD&gt;&lt;FONT color="#FF0000"&gt;3500&lt;/FONT&gt;&lt;/TD&gt;&lt;TD&gt;&lt;FONT color="#FF0000"&gt;4100&lt;/FONT&gt;&lt;/TD&gt;&lt;TD&gt;&lt;FONT color="#FF0000"&gt;4900&lt;/FONT&gt;&lt;/TD&gt;&lt;TD&gt;&lt;FONT color="#FF0000"&gt;5000&lt;/FONT&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description>
      <pubDate>Fri, 29 May 2020 08:47:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-Running-total-after-certain-Month/m-p/1128800#M16685</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-05-29T08:47:26Z</dc:date>
    </item>
    <item>
      <title>Re: Dax Running total after certain Month</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-Running-total-after-certain-Month/m-p/1128944#M16689</link>
      <description>&lt;P&gt;Hi again aaron&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The solution I provided seems to display the results exactly as you desire.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://1drv.ms/u/s!AgMTUY3Uvq3bg4ESL_YL7ghh9PQ3Fw?e=ZYAO4m" target="_self"&gt;Click here to download an example&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Cummulative total = &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;VAR mydynamicdate = DATEVALUE("1/3/2020") -- set the start date dynamically&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;VAR mymaxdate = MAX(Sales[Date]) -- this calcs the max date each month to improves performance &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;VAR totalqty=SUM(Sales[Qty]) &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;VAR cummulativeqty= &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;CALCULATE(SUM(Sales[Qty]),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;FILTER(ALL(Sales),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Sales[Date]&amp;gt;=mydynamicdate &amp;amp;&amp;amp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Sales[Date]&amp;lt;=mymaxdate))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;RETURN&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;If(mymaxdate&amp;lt;mydynamicdate,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;totalqty,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;cummulativeqty)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 29 May 2020 09:47:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-Running-total-after-certain-Month/m-p/1128944#M16689</guid>
      <dc:creator>speedramps</dc:creator>
      <dc:date>2020-05-29T09:47:18Z</dc:date>
    </item>
    <item>
      <title>Re: Dax Running total after certain Month</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-Running-total-after-certain-Month/m-p/1129029#M16694</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="177566" data-lia-user-login="speedramps" class="lia-mention lia-mention-user"&gt;speedramps&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yes your example is correct!&lt;/P&gt;&lt;P&gt;But it is not working on mine...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;After March it is doing this...&lt;/P&gt;&lt;DIV class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Below is the Dax used:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Cummulative total = 
VAR mydynamicdate = DATEVALUE("1/4/2020")  -- set the start date dynamically
VAR mymaxdate = MAX('Cap'[Month Year])                   -- this calcs the max date each month to improves performance 
VAR totalqty=SUM('Cap'[Value])                          
VAR cummulativeqty=                                           
CALCULATE(SUM('Cap'[Value]),
FILTER(ALL('Cap'),
'Cap'[Month Year]&amp;gt;=mydynamicdate &amp;amp;&amp;amp;
'Cap'[Month Year]&amp;lt;=mymaxdate))

RETURN
If(mymaxdate&amp;lt;mydynamicdate,
totalqty,
cummulativeqty)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;</description>
      <pubDate>Fri, 29 May 2020 10:25:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-Running-total-after-certain-Month/m-p/1129029#M16694</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-05-29T10:25:40Z</dc:date>
    </item>
    <item>
      <title>Re: Dax Running total after certain Month</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-Running-total-after-certain-Month/m-p/1129090#M16695</link>
      <description>&lt;P&gt;Hi arron&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It wont work because you changed the logic from date to month year&lt;BR /&gt;VAR mymaxdate = MAX('Cap'[Month Year])&amp;nbsp;&lt;/P&gt;&lt;P&gt;'Cap'[Month Year]&amp;gt;=mydynamicdate &amp;amp;&amp;amp;&lt;BR /&gt;'Cap'[Month Year]&amp;lt;=mymaxdate))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You need to to use your &lt;FONT color="#FF0000"&gt;&lt;EM&gt;&lt;STRONG&gt;Date&lt;/STRONG&gt;&lt;/EM&gt;&lt;/FONT&gt; field and then use the month in the visual.&lt;BR /&gt;The&amp;nbsp;Cap'[Date]&amp;lt;=mymaxdate logic will then calualte the month end dates automatically.&lt;/P&gt;&lt;P&gt;see my example&lt;/P&gt;&lt;P&gt;&lt;A href="https://1drv.ms/u/s!AgMTUY3Uvq3bg4ESL_YL7ghh9PQ3Fw?e=lIGNBA" target="_self"&gt;Download this example&lt;/A&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;Cummulative total =&lt;BR /&gt;VAR mydynamicdate = DATEVALUE("1/4/2020") -- set the start date dynamically&lt;BR /&gt;VAR mymaxdate = MAX('Cap'[&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&lt;EM&gt;Date&lt;/EM&gt;)&lt;/STRONG&gt;&lt;/FONT&gt; -- this calcs the max date each month to improves performance&lt;BR /&gt;VAR totalqty=SUM('Cap'[Value])&lt;BR /&gt;VAR cummulativeqty=&lt;BR /&gt;CALCULATE(SUM('Cap'[Value]),&lt;BR /&gt;FILTER(ALL('Cap'),&lt;BR /&gt;'Cap'[&lt;EM&gt;&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;Date&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/EM&gt;]&amp;gt;=mydynamicdate &amp;amp;&amp;amp;&lt;BR /&gt;'Cap'[&lt;STRONG&gt;&lt;EM&gt;&lt;FONT color="#FF0000"&gt;Date&lt;/FONT&gt;&lt;/EM&gt;&lt;/STRONG&gt;]&amp;lt;=mymaxdate))&lt;/P&gt;&lt;P&gt;RETURN&lt;BR /&gt;If(mymaxdate&amp;lt;mydynamicdate,&lt;BR /&gt;totalqty,&lt;BR /&gt;cummulativeqty)&lt;/P&gt;</description>
      <pubDate>Fri, 29 May 2020 11:00:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-Running-total-after-certain-Month/m-p/1129090#M16695</guid>
      <dc:creator>speedramps</dc:creator>
      <dc:date>2020-05-29T11:00:27Z</dc:date>
    </item>
    <item>
      <title>Re: Dax Running total after certain Month</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-Running-total-after-certain-Month/m-p/1129130#M16696</link>
      <description>&lt;P&gt;Also note the filter contains an ALL command&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;FILTER(&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;ALL&lt;/STRONG&gt;&lt;/FONT&gt;('Cap'),&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;'Cap'[Date]&amp;gt;=mydynamicdate &amp;amp;&amp;amp;&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;'Cap'[Date]&amp;lt;=mymaxdate))&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;So if you are using slicers or other filters the ALL will remove them. Which might explain your problem.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;But you can easily reinstate these with within the CALCULATE FILTER command.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;It is tricky for me to help without seeing the PBIX.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 29 May 2020 11:13:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-Running-total-after-certain-Month/m-p/1129130#M16696</guid>
      <dc:creator>speedramps</dc:creator>
      <dc:date>2020-05-29T11:13:05Z</dc:date>
    </item>
    <item>
      <title>Re: Dax Running total after certain Month</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-Running-total-after-certain-Month/m-p/1129164#M16697</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="177566" data-lia-user-login="speedramps" class="lia-mention lia-mention-user"&gt;speedramps&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It is still not working..... Please could you advise. I have done exactly how you have said but it is still not working for me...&lt;/P&gt;&lt;P&gt;I have tried using date instead but still nothing..&lt;/P&gt;&lt;P&gt;what information can i give you to better analyze?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 29 May 2020 11:30:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-Running-total-after-certain-Month/m-p/1129164#M16697</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-05-29T11:30:11Z</dc:date>
    </item>
    <item>
      <title>Re: Dax Running total after certain Month</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-Running-total-after-certain-Month/m-p/1129170#M16698</link>
      <description>&lt;P&gt;Yes I do have filters applied to the matrix!&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Product is not&amp;nbsp;Shoes/Socks/jumpers..&lt;/P&gt;</description>
      <pubDate>Fri, 29 May 2020 11:33:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-Running-total-after-certain-Month/m-p/1129170#M16698</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-05-29T11:33:08Z</dc:date>
    </item>
    <item>
      <title>Re: Dax Running total after certain Month</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-Running-total-after-certain-Month/m-p/1129190#M16699</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="177566" data-lia-user-login="speedramps" class="lia-mention lia-mention-user"&gt;speedramps&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have now removed the filters from Power Query. I am getting the correct totals. But for every product it is duplicating the total after March.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Could you advise?&lt;/P&gt;</description>
      <pubDate>Fri, 29 May 2020 11:40:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-Running-total-after-certain-Month/m-p/1129190#M16699</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-05-29T11:40:36Z</dc:date>
    </item>
    <item>
      <title>Re: Dax Running total after certain Month</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-Running-total-after-certain-Month/m-p/1129485#M16706</link>
      <description>&lt;P&gt;Figured it out....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But thank you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Cummulative total =&lt;BR /&gt;VAR mydynamicdate = DATEVALUE("1/4/2020") -- set the start date dynamically&lt;BR /&gt;VAR mymaxdate = MAX('Cap'[&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;&lt;EM&gt;Date&lt;/EM&gt;)&lt;/STRONG&gt;&lt;/FONT&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;-- this calcs the max date each month to improves performance&lt;BR /&gt;VAR totalqty=SUM('Cap'[Value])&lt;BR /&gt;VAR cummulativeqty=&lt;BR /&gt;CALCULATE(SUM('Cap'[Value]),&lt;BR /&gt;FILTER(ALLEXCEPT('Cap','Cap',[Product]),&lt;BR /&gt;'Cap'[&lt;EM&gt;&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;Date&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/EM&gt;]&amp;gt;=mydynamicdate &amp;amp;&amp;amp;&lt;BR /&gt;'Cap'[&lt;STRONG&gt;&lt;EM&gt;&lt;FONT color="#FF0000"&gt;Date&lt;/FONT&gt;&lt;/EM&gt;&lt;/STRONG&gt;]&amp;lt;=mymaxdate))&lt;/P&gt;&lt;P&gt;RETURN&lt;BR /&gt;If(mymaxdate&amp;lt;mydynamicdate,&lt;BR /&gt;totalqty,&lt;BR /&gt;cummulativeqty)&lt;/P&gt;</description>
      <pubDate>Fri, 29 May 2020 14:25:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-Running-total-after-certain-Month/m-p/1129485#M16706</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-05-29T14:25:27Z</dc:date>
    </item>
    <item>
      <title>Re: Dax Running total after certain Month</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-Running-total-after-certain-Month/m-p/1129686#M16714</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Well done.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 29 May 2020 15:45:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Dax-Running-total-after-certain-Month/m-p/1129686#M16714</guid>
      <dc:creator>speedramps</dc:creator>
      <dc:date>2020-05-29T15:45:40Z</dc:date>
    </item>
  </channel>
</rss>

