<?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: Add and subtract from Running total in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-and-subtract-from-Running-total/m-p/3176667#M114693</link>
    <description>&lt;P&gt;&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;, this works, but I belive the caluclations crew up because of the times from 0000-0200. Anyway to start this from the Time 0300 ? I belive this would slove this issue.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you so much again&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 06 Apr 2023 19:47:11 GMT</pubDate>
    <dc:creator>Zidane22</dc:creator>
    <dc:date>2023-04-06T19:47:11Z</dc:date>
    <item>
      <title>Add and subtract from Running total</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-and-subtract-from-Running-total/m-p/3172126#M114368</link>
      <description>&lt;P&gt;Hello everyone,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Using the foruma below I get the running total, which is great but I dont want it to keep adding to itself if there is no value (column1) to be added. I also need it to subtract (column2) if there is a value.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For example :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Column 1.&amp;nbsp; &amp;nbsp; Column 2&amp;nbsp; &amp;nbsp; Measure I need displayed:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;0.&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; -&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;0&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 0&amp;nbsp;&lt;/P&gt;&lt;P&gt;7&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; -&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;0&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;7&amp;nbsp;&lt;/P&gt;&lt;P&gt;26&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;-&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 5&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;28 -- ( 7+ 26 = 33 -5 =28)&amp;nbsp;&lt;/P&gt;&lt;P&gt;0.&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; -&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 3&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 25 ( 28+0 = 28 -3 =25)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help to achive this would mean so much, I've been suck on this for days!&amp;nbsp;&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;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Running Total MEASURE = CALCULATE ( SUM ( 'All Web Site Data (2)'[UniquePageviews] ), FILTER ( ALL ( 'All Web Site Data (2)' ), 'All Web Site Data (2)'[Date] &amp;lt;= MAX ( 'All Web Site Data (2)'[Date] ) ) )&lt;/P&gt;</description>
      <pubDate>Tue, 04 Apr 2023 15:18:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-and-subtract-from-Running-total/m-p/3172126#M114368</guid>
      <dc:creator>Zidane22</dc:creator>
      <dc:date>2023-04-04T15:18:43Z</dc:date>
    </item>
    <item>
      <title>Re: Add and subtract from Running total</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-and-subtract-from-Running-total/m-p/3172162#M114372</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="457274" data-lia-user-login="Zidane22" class="lia-mention lia-mention-user"&gt;Zidane22&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;please try&lt;/P&gt;
&lt;P&gt;RunningTotal =&lt;BR /&gt;SUMX (&lt;BR /&gt;FILTER (&lt;BR /&gt;ALL ( 'All Web Site Data (2)' ),&lt;BR /&gt;'All Web Site Data (2)'[Date] &amp;lt;= MAX ( 'All Web Site Data (2)'[Date] )&lt;BR /&gt;),&lt;BR /&gt;'All Web Site Data (2)'[Column1] - 'All Web Site Data (2)'[Column2]&lt;BR /&gt;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;perhaps&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="313" data-lia-user-login="Greg_Deckler" class="lia-mention lia-mention-user"&gt;Greg_Deckler&lt;/a&gt;&amp;nbsp;can provide you with a solution based on CALCULATE &lt;span class="lia-unicode-emoji" title=":winking_face_with_tongue:"&gt;😜&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Apr 2023 15:34:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-and-subtract-from-Running-total/m-p/3172162#M114372</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-04-04T15:34:32Z</dc:date>
    </item>
    <item>
      <title>Re: Add and subtract from Running total</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-and-subtract-from-Running-total/m-p/3172533#M114403</link>
      <description>&lt;P&gt;Thank you&amp;nbsp;&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;,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It looks like its working I just have to check the math.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is their away to start the value of this calcuation of a from 0? have a differnt calculation that starts with the differnt column first value? So if the value is 90 in the in first item then it would start at 90 then go backwords into the negtives when it passes 1.&amp;nbsp; 2 two measures . One starts a 0 (this one) and second one starts with the first value in a differnt column (90) for example. so I would have two lines&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This calculation is used in line graph give the total after the light purple - oranage, give its total and carrying that total to the next line. Hope that makes sense.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Apr 2023 20:30:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-and-subtract-from-Running-total/m-p/3172533#M114403</guid>
      <dc:creator>Zidane22</dc:creator>
      <dc:date>2023-04-04T20:30:51Z</dc:date>
    </item>
    <item>
      <title>Re: Add and subtract from Running total</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-and-subtract-from-Running-total/m-p/3172553#M114405</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="457274" data-lia-user-login="Zidane22" class="lia-mention lia-mention-user"&gt;Zidane22&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please provide a sample along with at least one example&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Apr 2023 20:43:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-and-subtract-from-Running-total/m-p/3172553#M114405</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-04-04T20:43:35Z</dc:date>
    </item>
    <item>
      <title>Re: Add and subtract from Running total</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-and-subtract-from-Running-total/m-p/3172897#M114452</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&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;,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please see exampe below. What i need t calcualute is the two columns in the yellow in two differnt measures.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you so much for your help, really means alot. I've been really strugling with this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Apr 2023 03:59:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-and-subtract-from-Running-total/m-p/3172897#M114452</guid>
      <dc:creator>Zidane22</dc:creator>
      <dc:date>2023-04-05T03:59:15Z</dc:date>
    </item>
    <item>
      <title>Re: Add and subtract from Running total</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-and-subtract-from-Running-total/m-p/3172911#M114454</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="457274" data-lia-user-login="Zidane22" class="lia-mention lia-mention-user"&gt;Zidane22&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Taken from another column in the same table? Is it the sum of that column or the first value or what exactly? I noticed that sonetimes you are subtracting the TRUCKS AVILABLE and sometimes not, please clarify.&lt;/P&gt;</description>
      <pubDate>Wed, 05 Apr 2023 04:14:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-and-subtract-from-Running-total/m-p/3172911#M114454</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-04-05T04:14:27Z</dc:date>
    </item>
    <item>
      <title>Re: Add and subtract from Running total</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-and-subtract-from-Running-total/m-p/3173893#M114505</link>
      <description>&lt;P&gt;Sorry Im not being clear, Its the same Table but differnt column name "EBS IN SERVICE" the first item will have the value that i need not the sum.&amp;nbsp; Yes only subtracting if trucks are in use.&amp;nbsp; These two calcuations basically need to tell me two things. 1) how many trucks are being used per hour (which you get from "TRUCKS REQ" subtracting "TRUCKS AVAILABLE" which is trucks coming back being retuned.&amp;nbsp; 2) I only have certian amount of trucks in service, which the value dose change automaticaly and this is were the (90) for example comes in. Bascially in this calculation it will forcast if we will have enough trucks by mid day or we would be short beause its subtracting the amount of trucks that we need from what's actually in service. Hope this makes it more clear. Thank you again so much.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Apr 2023 13:04:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-and-subtract-from-Running-total/m-p/3173893#M114505</guid>
      <dc:creator>Zidane22</dc:creator>
      <dc:date>2023-04-05T13:04:58Z</dc:date>
    </item>
    <item>
      <title>Re: Add and subtract from Running total</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-and-subtract-from-Running-total/m-p/3174357#M114537</link>
      <description>&lt;P&gt;Thank you&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="457274" data-lia-user-login="Zidane22" class="lia-mention lia-mention-user"&gt;Zidane22&lt;/a&gt;&amp;nbsp;for this explanation and sorry for asking too many questions.&amp;nbsp;&lt;BR /&gt;&lt;EM&gt;"&lt;SPAN&gt;the first item will have"&amp;nbsp;&lt;/SPAN&gt;&lt;/EM&gt;&lt;SPAN&gt;&lt;STRONG&gt;is this when TIMES = 0?&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;"&lt;SPAN&gt;only subtracting if trucks are in use"&amp;nbsp;&lt;/SPAN&gt;&lt;/EM&gt;&lt;SPAN&gt;&lt;STRONG&gt;would you please elaborate on this?&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Apr 2023 16:30:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-and-subtract-from-Running-total/m-p/3174357#M114537</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-04-05T16:30:14Z</dc:date>
    </item>
    <item>
      <title>Re: Add and subtract from Running total</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-and-subtract-from-Running-total/m-p/3174386#M114541</link>
      <description>&lt;P&gt;No problem, I know your asking so you can help me correctly. Really means alot.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yes, it will be in the same row in "000" but in a diffrent column.&amp;nbsp;&lt;/P&gt;&lt;P&gt;So its like a car rental company. I need to know how many Cars are needed per hour based on cutsomer reservations.&amp;nbsp; so if I have 10 customers at 0100, I need 10 Cars.&amp;nbsp; &amp;nbsp;if at 0200 I have another 10 customers that need 10 cars then the requirment by 0200 is 20 cars.&amp;nbsp; But if at 0200 I have 5 customers that return thier cars then I actually only need 15 cars now because someone who had the cars previoulsy have returned it so the total 20 cars are not needed anymore. It only subtracts when TRUCKS are availble (I should actual name that column retuned sorry) - hope this makes more sense&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Apr 2023 16:58:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-and-subtract-from-Running-total/m-p/3174386#M114541</guid>
      <dc:creator>Zidane22</dc:creator>
      <dc:date>2023-04-05T16:58:29Z</dc:date>
    </item>
    <item>
      <title>Re: Add and subtract from Running total</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-and-subtract-from-Running-total/m-p/3174541#M114550</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="457274" data-lia-user-login="Zidane22" class="lia-mention lia-mention-user"&gt;Zidane22&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please try&lt;/P&gt;
&lt;P&gt;RunningTotal =&lt;BR /&gt;VAR T =&lt;BR /&gt;ALL ( 'All Web Site Data (2)' )&lt;BR /&gt;VAR FirstRecord =&lt;BR /&gt;TOPN ( 1, T, 'All Web Site Data (2)'[Date], ASC )&lt;BR /&gt;VAR InService =&lt;BR /&gt;MAXX ( FirstRecod, 'All Web Site Data (2)'[EBS IN SERVICE] )&lt;BR /&gt;VAR Result =&lt;BR /&gt;SUMX (&lt;BR /&gt;FILTER (&lt;BR /&gt;T,&lt;BR /&gt;'All Web Site Data (2)'[Date] &amp;lt;= MAX ( 'All Web Site Data (2)'[Date] )&lt;BR /&gt;),&lt;BR /&gt;'All Web Site Data (2)'[Column1] - 'All Web Site Data (2)'[Column2]&lt;BR /&gt;)&lt;BR /&gt;RETURN&lt;BR /&gt;InService + Result&lt;/P&gt;</description>
      <pubDate>Wed, 05 Apr 2023 19:04:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-and-subtract-from-Running-total/m-p/3174541#M114550</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-04-05T19:04:36Z</dc:date>
    </item>
    <item>
      <title>Re: Add and subtract from Running total</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-and-subtract-from-Running-total/m-p/3174609#M114552</link>
      <description>&lt;P&gt;Thank you so much, I will try now. Is that one measure for both? Wouldn't i need two sepreate calculations? One for each yellow column ?&lt;/P&gt;</description>
      <pubDate>Wed, 05 Apr 2023 19:51:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-and-subtract-from-Running-total/m-p/3174609#M114552</guid>
      <dc:creator>Zidane22</dc:creator>
      <dc:date>2023-04-05T19:51:31Z</dc:date>
    </item>
    <item>
      <title>Re: Add and subtract from Running total</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-and-subtract-from-Running-total/m-p/3174615#M114553</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="457274" data-lia-user-login="Zidane22" class="lia-mention lia-mention-user"&gt;Zidane22&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;"This is the one that starts at 90"&lt;/P&gt;</description>
      <pubDate>Wed, 05 Apr 2023 19:56:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-and-subtract-from-Running-total/m-p/3174615#M114553</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-04-05T19:56:05Z</dc:date>
    </item>
    <item>
      <title>Re: Add and subtract from Running total</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-and-subtract-from-Running-total/m-p/3174660#M114556</link>
      <description>&lt;P&gt;So it seems its calculating the same way your first forumla provided. It's not starting from the first value, which is currently 90, it's started from -4&amp;nbsp; : (&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Apr 2023 20:32:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-and-subtract-from-Running-total/m-p/3174660#M114556</guid>
      <dc:creator>Zidane22</dc:creator>
      <dc:date>2023-04-05T20:32:20Z</dc:date>
    </item>
    <item>
      <title>Re: Add and subtract from Running total</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-and-subtract-from-Running-total/m-p/3174689#M114559</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="457274" data-lia-user-login="Zidane22" class="lia-mention lia-mention-user"&gt;Zidane22&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can you share a screenshot showing the column that contains the starting value?&lt;/P&gt;</description>
      <pubDate>Wed, 05 Apr 2023 20:54:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-and-subtract-from-Running-total/m-p/3174689#M114559</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-04-05T20:54:53Z</dc:date>
    </item>
    <item>
      <title>Re: Add and subtract from Running total</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-and-subtract-from-Running-total/m-p/3174709#M114563</link>
      <description>&lt;P&gt;&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;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Apr 2023 21:24:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-and-subtract-from-Running-total/m-p/3174709#M114563</guid>
      <dc:creator>Zidane22</dc:creator>
      <dc:date>2023-04-05T21:24:30Z</dc:date>
    </item>
    <item>
      <title>Re: Add and subtract from Running total</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-and-subtract-from-Running-total/m-p/3174723#M114564</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="457274" data-lia-user-login="Zidane22" class="lia-mention lia-mention-user"&gt;Zidane22&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please try&lt;/P&gt;
&lt;P&gt;RunningTotal =&lt;BR /&gt;VAR T =&lt;BR /&gt;ALL ( 'All Web Site Data (2)' )&lt;BR /&gt;VAR InService =&lt;BR /&gt;MAXX ( T, 'All Web Site Data (2)'[EBS IN SERVICE] )&lt;BR /&gt;VAR Result =&lt;BR /&gt;SUMX (&lt;BR /&gt;FILTER (&lt;BR /&gt;T,&lt;BR /&gt;'All Web Site Data (2)'[Date] &amp;lt;= MAX ( 'All Web Site Data (2)'[Date] )&lt;BR /&gt;),&lt;BR /&gt;'All Web Site Data (2)'[Column1] - 'All Web Site Data (2)'[Column2]&lt;BR /&gt;)&lt;BR /&gt;RETURN&lt;BR /&gt;InService + Result&lt;/P&gt;</description>
      <pubDate>Wed, 05 Apr 2023 21:43:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-and-subtract-from-Running-total/m-p/3174723#M114564</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-04-05T21:43:24Z</dc:date>
    </item>
    <item>
      <title>Re: Add and subtract from Running total</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-and-subtract-from-Running-total/m-p/3174731#M114565</link>
      <description>&lt;P&gt;Not sure.. it jumps to the 100's which dosen't make sense, should be counting down as they day goes on not counting up...&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Apr 2023 21:53:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-and-subtract-from-Running-total/m-p/3174731#M114565</guid>
      <dc:creator>Zidane22</dc:creator>
      <dc:date>2023-04-05T21:53:56Z</dc:date>
    </item>
    <item>
      <title>Re: Add and subtract from Running total</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-and-subtract-from-Running-total/m-p/3175121#M114590</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="457274" data-lia-user-login="Zidane22" class="lia-mention lia-mention-user"&gt;Zidane22&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Noted. Please try&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;RunningTotal =
VAR T =
    ALL ( 'All Web Site Data (2)' )
VAR InService =
    MAXX ( T, 'All Web Site Data (2)'[EBS IN SERVICE] )
VAR Result =
    SUMX (
        FILTER (
            T,
            'All Web Site Data (2)'[Date] &amp;lt;= MAX ( 'All Web Site Data (2)'[Date] )
        ),
        'All Web Site Data (2)'[Column1] - 'All Web Site Data (2)'[Column2]
    )
RETURN
    InService - Result&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 06 Apr 2023 03:31:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-and-subtract-from-Running-total/m-p/3175121#M114590</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-04-06T03:31:15Z</dc:date>
    </item>
    <item>
      <title>Re: Add and subtract from Running total</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-and-subtract-from-Running-total/m-p/3176141#M114655</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&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;it now going down but still jumping to 100 which dose not make sense when the max number is 90. I will play around with it .&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you please help me with the meausue for the first column please? Trucks being used?&amp;nbsp; Thank you again for all the help.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Apr 2023 14:09:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-and-subtract-from-Running-total/m-p/3176141#M114655</guid>
      <dc:creator>Zidane22</dc:creator>
      <dc:date>2023-04-06T14:09:17Z</dc:date>
    </item>
    <item>
      <title>Re: Add and subtract from Running total</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-and-subtract-from-Running-total/m-p/3176269#M114663</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="457274" data-lia-user-login="Zidane22" class="lia-mention lia-mention-user"&gt;Zidane22&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Do you mean without the 90? What is the issue with my first dax?&lt;/P&gt;</description>
      <pubDate>Thu, 06 Apr 2023 15:26:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Add-and-subtract-from-Running-total/m-p/3176269#M114663</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-04-06T15:26:52Z</dc:date>
    </item>
  </channel>
</rss>

