<?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: Over time, the accumulated measure in DAX is losing values in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Over-time-the-accumulated-measure-in-DAX-is-losing-values/m-p/3506466#M134515</link>
    <description>&lt;P style="margin: 0in; font-family: tahoma; font-size: 11.0pt;"&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="637446" data-lia-user-login="marcus_pinheiro" class="lia-mention lia-mention-user"&gt;marcus_pinheiro&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P style="margin: 0in; font-family: tahoma; font-size: 11.0pt;"&gt;Can you please share a pbix or some dummy data that keep the raw data structure with expected results? It should help us clarify your scenario and test to coding formula.&lt;/P&gt;
&lt;P style="margin: 0in; font-family: tahoma; font-size: 11.0pt;"&gt;&lt;A href="http://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490" target="_blank"&gt;How to Get Your Question Answered Quickly&amp;nbsp;&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: tahoma; font-size: 11.0pt;"&gt;Regards,&lt;/P&gt;
&lt;P style="margin: 0in; font-family: tahoma; font-size: 11.0pt;"&gt;Xiaoxin Sheng&lt;/P&gt;</description>
    <pubDate>Tue, 31 Oct 2023 07:10:36 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2023-10-31T07:10:36Z</dc:date>
    <item>
      <title>Over time, the accumulated measure in DAX is losing values</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Over-time-the-accumulated-measure-in-DAX-is-losing-values/m-p/3499704#M134177</link>
      <description>&lt;P&gt;I have defined the following measure in DAX:&lt;/P&gt;&lt;P&gt;_3_Cotas = CALCULATE(([value1] + [value2]), ALL('Calendar'[Date]), 'Calendar'[Date] &amp;lt;= MAX('Calendar'[Date]))&lt;/P&gt;&lt;P&gt;Despite there being no negative values in the entire database, the measure occasionally shows decreasing points. It's worth noting that both 'value1' and 'value2' are integer values derived from other measures.&lt;/P&gt;</description>
      <pubDate>Thu, 26 Oct 2023 18:07:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Over-time-the-accumulated-measure-in-DAX-is-losing-values/m-p/3499704#M134177</guid>
      <dc:creator>marcus_pinheiro</dc:creator>
      <dc:date>2023-10-26T18:07:21Z</dc:date>
    </item>
    <item>
      <title>Re: Over time, the accumulated measure in DAX is losing values</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Over-time-the-accumulated-measure-in-DAX-is-losing-values/m-p/3499791#M134182</link>
      <description>&lt;P&gt;hi,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="637446" data-lia-user-login="marcus_pinheiro" class="lia-mention lia-mention-user"&gt;marcus_pinheiro&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;_3_Cotas = CALCULATE(([value1] + [value2]), &lt;FONT color="#FF0000"&gt;ALL('Calendar'[Date])&lt;/FONT&gt;, 'Calendar'[Date] &amp;lt;= MAX('Calendar'[Date]))&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;here first you remove filter context of&lt;STRONG&gt; calender[date]&lt;/STRONG&gt; and then you compare with same filter context of&amp;nbsp;&lt;STRONG&gt;Calendar'[Date] &amp;lt;= MAX('Calendar'[Date]).&amp;nbsp;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN&gt;it's might problem here&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;so you want to ignore filter of&amp;nbsp;&amp;nbsp;&lt;STRONG&gt;calender[date]&amp;nbsp;&lt;/STRONG&gt; or&amp;nbsp; want to remove filter context of&amp;nbsp;&lt;STRONG&gt;calender[date].&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;if you want to running sum of &lt;SPAN&gt;([value1] + [value2] then it work using blow code&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;_3_Cotas = CALCULATE(([value1] + [value2]), 'Calendar'[Date] &amp;lt;= MAX('Calendar'[Date]))&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Oct 2023 18:56:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Over-time-the-accumulated-measure-in-DAX-is-losing-values/m-p/3499791#M134182</guid>
      <dc:creator>Dangar332</dc:creator>
      <dc:date>2023-10-26T18:56:07Z</dc:date>
    </item>
    <item>
      <title>Re: Over time, the accumulated measure in DAX is losing values</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Over-time-the-accumulated-measure-in-DAX-is-losing-values/m-p/3501165#M134251</link>
      <description>&lt;P&gt;This doesn't work.&lt;/P&gt;</description>
      <pubDate>Fri, 27 Oct 2023 11:14:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Over-time-the-accumulated-measure-in-DAX-is-losing-values/m-p/3501165#M134251</guid>
      <dc:creator>marcus_pinheiro</dc:creator>
      <dc:date>2023-10-27T11:14:18Z</dc:date>
    </item>
    <item>
      <title>Re: Over time, the accumulated measure in DAX is losing values</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Over-time-the-accumulated-measure-in-DAX-is-losing-values/m-p/3506466#M134515</link>
      <description>&lt;P style="margin: 0in; font-family: tahoma; font-size: 11.0pt;"&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="637446" data-lia-user-login="marcus_pinheiro" class="lia-mention lia-mention-user"&gt;marcus_pinheiro&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P style="margin: 0in; font-family: tahoma; font-size: 11.0pt;"&gt;Can you please share a pbix or some dummy data that keep the raw data structure with expected results? It should help us clarify your scenario and test to coding formula.&lt;/P&gt;
&lt;P style="margin: 0in; font-family: tahoma; font-size: 11.0pt;"&gt;&lt;A href="http://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490" target="_blank"&gt;How to Get Your Question Answered Quickly&amp;nbsp;&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: tahoma; font-size: 11.0pt;"&gt;Regards,&lt;/P&gt;
&lt;P style="margin: 0in; font-family: tahoma; font-size: 11.0pt;"&gt;Xiaoxin Sheng&lt;/P&gt;</description>
      <pubDate>Tue, 31 Oct 2023 07:10:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Over-time-the-accumulated-measure-in-DAX-is-losing-values/m-p/3506466#M134515</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-10-31T07:10:36Z</dc:date>
    </item>
  </channel>
</rss>

