<?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 Totals are not considering the values from IF DAX. in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Totals-are-not-considering-the-values-from-IF-DAX/m-p/1383792#M25292</link>
    <description>Not enough information to tell you where a problem is....</description>
    <pubDate>Mon, 21 Sep 2020 09:20:25 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2020-09-21T09:20:25Z</dc:date>
    <item>
      <title>Running Totals are not considering the values from IF DAX.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Totals-are-not-considering-the-values-from-IF-DAX/m-p/1383385#M25281</link>
      <description>&lt;P&gt;Dear Team,&lt;/P&gt;&lt;P&gt;I am calculating cumulative balance using DAX, my DAX is not giving correct running totals.&lt;/P&gt;&lt;P&gt;Issue is happening due to this “Funding” measure part, if I ignore / comment out this Funding measure then my running totals are coming correctly. So basically my cumulative DAX is not considering this “Funding” measure. Please advise on how to correct this one? Tried many workarounds but none of them is working for my case.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;DAX 1&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Balance Current Month Updated =&lt;BR /&gt;&lt;BR /&gt;[TB Amount Total] + [ToCollect] - [Forecasted payments v2] + &lt;STRONG&gt;[Funding]&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;DAX 2&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Funding = IF(&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;[Balance Current Month] &amp;lt; 0,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;[Balance Current Month]*-1,10000000&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;DAX 3&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Cumulative Balance Updated =&lt;/P&gt;&lt;P&gt;VAR Result =&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CALCULATE (&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Balance Current Month Updated],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FILTER ( ALLSELECTED ( 'Date' ), 'Date'[Date] &amp;lt;= MAX('Date'[Date] )&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; )&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; )&lt;/P&gt;&lt;P&gt;RETURN&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Result&lt;/P&gt;</description>
      <pubDate>Mon, 21 Sep 2020 07:26:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Totals-are-not-considering-the-values-from-IF-DAX/m-p/1383385#M25281</guid>
      <dc:creator>DivakarKrishnan</dc:creator>
      <dc:date>2020-09-21T07:26:07Z</dc:date>
    </item>
    <item>
      <title>Re: Running Totals are not considering the values from IF DAX.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Totals-are-not-considering-the-values-from-IF-DAX/m-p/1383718#M25285</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="127628" data-lia-user-login="DivakarKrishnan" class="lia-mention lia-mention-user"&gt;DivakarKrishnan&lt;/a&gt; , Try like&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cumulative Balance Updated =&lt;/P&gt;
&lt;P&gt;VAR Result =&lt;BR /&gt;var _1 = Sumx(summarize('Date', 'Date'[Month Year],"_1",[Balance Current Month Updated]),[_1])&lt;BR /&gt;return &lt;BR /&gt;CALCULATE (&lt;BR /&gt;_1, FILTER ( ALLSELECTED ( 'Date' ), 'Date'[Date] &amp;lt;= MAX('Date'[Date] )&lt;BR /&gt;) )&lt;BR /&gt;&lt;BR /&gt;or &lt;BR /&gt;Cumulative Balance Updated =&lt;/P&gt;
&lt;P&gt;VAR Result =&lt;BR /&gt;var _1 = Sumx(summarize('Date', 'Date'[Date],"_1",[Balance Current Month Updated]),[_1])&lt;BR /&gt;return &lt;BR /&gt;CALCULATE (&lt;BR /&gt;_1, FILTER ( ALLSELECTED ( 'Date' ), 'Date'[Date] &amp;lt;= MAX('Date'[Date] )&lt;BR /&gt;) )&lt;/P&gt;</description>
      <pubDate>Mon, 21 Sep 2020 08:56:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Totals-are-not-considering-the-values-from-IF-DAX/m-p/1383718#M25285</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2020-09-21T08:56:54Z</dc:date>
    </item>
    <item>
      <title>Re: Running Totals are not considering the values from IF DAX.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Totals-are-not-considering-the-values-from-IF-DAX/m-p/1383772#M25290</link>
      <description>&lt;P&gt;Dear Amit &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;, Tried the both but not working..&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When using &lt;STRONG&gt;Month Year&lt;/STRONG&gt;, i am getting same figures as Balance Current Month Updated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When using &lt;STRONG&gt;Date&lt;/STRONG&gt;, i am getting below which is not correct and huge figures.&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;</description>
      <pubDate>Mon, 21 Sep 2020 09:15:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Totals-are-not-considering-the-values-from-IF-DAX/m-p/1383772#M25290</guid>
      <dc:creator>DivakarKrishnan</dc:creator>
      <dc:date>2020-09-21T09:15:56Z</dc:date>
    </item>
    <item>
      <title>Re: Running Totals are not considering the values from IF DAX.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Totals-are-not-considering-the-values-from-IF-DAX/m-p/1383792#M25292</link>
      <description>Not enough information to tell you where a problem is....</description>
      <pubDate>Mon, 21 Sep 2020 09:20:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Totals-are-not-considering-the-values-from-IF-DAX/m-p/1383792#M25292</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-09-21T09:20:25Z</dc:date>
    </item>
    <item>
      <title>Re: Running Totals are not considering the values from IF DAX.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Totals-are-not-considering-the-values-from-IF-DAX/m-p/1383796#M25293</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="127628" data-lia-user-login="DivakarKrishnan" class="lia-mention lia-mention-user"&gt;DivakarKrishnan&lt;/a&gt; , Your questions seem the same as this one? &lt;A href="https://community.powerbi.com/t5/DAX-Commands-and-Tips/Cumulative-Balance-Issue/m-p/1382270#M25265" target="_blank"&gt;https://community.powerbi.com/t5/DAX-Commands-and-Tips/Cumulative-Balance-Issue/m-p/1382270#M25265&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Check the suggestion there &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 21 Sep 2020 09:21:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Totals-are-not-considering-the-values-from-IF-DAX/m-p/1383796#M25293</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2020-09-21T09:21:18Z</dc:date>
    </item>
  </channel>
</rss>

