<?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: Calculate amount of orders without blanks and gets previous value in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-amount-of-orders-without-blanks-and-gets-previous/m-p/2989010#M100493</link>
    <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="464380" data-lia-user-login="bburcu" class="lia-mention lia-mention-user"&gt;bburcu&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please try&lt;/P&gt;
&lt;P&gt;Siparis miktarı güncel =&lt;BR /&gt;VAR LastRecordsWithData =&lt;BR /&gt;CALCULATETABLE (&lt;BR /&gt;TOPN ( 1, 'Table', 'Table'[Tarih] ),&lt;BR /&gt;ALL ( 'Tarih' ),&lt;BR /&gt;VALUES ( 'Tarih'[Hafta] )&lt;BR /&gt;)&lt;BR /&gt;VAR PreviousValue =&lt;BR /&gt;SUMX ( LastRecordsWithData, 'Table'[Sipariş mikt.] )&lt;BR /&gt;RETURN&lt;BR /&gt;COALESCE ( [Measure], PreviousValue )&lt;/P&gt;</description>
    <pubDate>Mon, 26 Dec 2022 16:15:24 GMT</pubDate>
    <dc:creator>tamerj1</dc:creator>
    <dc:date>2022-12-26T16:15:24Z</dc:date>
    <item>
      <title>Calculate amount of orders without blanks and gets previous value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-amount-of-orders-without-blanks-and-gets-previous/m-p/2988495#M100432</link>
      <description>&lt;P&gt;Dear all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a problem that I'm handling nowadays.&amp;nbsp;&lt;/P&gt;&lt;P&gt;As you can see in the picture below, there are some order amounts that come empty. As in the example below, in the data set of order amounts, there are no records for the dates 18.03.2022, 19.03.2022, 20.03.2022 and 21.03.2022. However, I need to print the previous value instead of the empty order amounts. I developed a formula for this as follows. However, this formula creates a performance problem. The report's performance has slowed. Do you have any other suggestions in this situation?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Order amount w/o blanks = &lt;/SPAN&gt;&lt;SPAN&gt;IF&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;AND&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;MAXX&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Date&lt;/SPAN&gt;&lt;SPAN&gt;,Date&lt;/SPAN&gt;&lt;SPAN&gt;[Date]&lt;/SPAN&gt;&lt;SPAN&gt;)&amp;lt;&lt;/SPAN&gt;&lt;SPAN&gt;[Week start date by week]&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;ISBLANK&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;[Sipariş miktarı max per Tarih]&lt;/SPAN&gt;&lt;SPAN&gt;)),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;LASTNONBLANK&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Merge1&lt;/SPAN&gt;&lt;SPAN&gt;[Order amount]&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;[Sipariş miktarı max per Tarih]&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;SPAN&gt;FILTER&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;ALL&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Date'&lt;/SPAN&gt;&lt;SPAN&gt;), &lt;/SPAN&gt;&lt;SPAN&gt;Date&lt;/SPAN&gt;&lt;SPAN&gt;[Date]&lt;/SPAN&gt;&lt;SPAN&gt; &amp;lt;= &lt;/SPAN&gt;&lt;SPAN&gt;MAXX&lt;/SPAN&gt;&lt;SPAN&gt;(Date&lt;/SPAN&gt;&lt;SPAN&gt;,Date&lt;/SPAN&gt;&lt;SPAN&gt;[Date]&lt;/SPAN&gt;&lt;SPAN&gt;))), &lt;/SPAN&gt;&lt;SPAN&gt;SUMX&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Merge1&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;'Merge1'&lt;/SPAN&gt;&lt;SPAN&gt;[Order amount]&lt;/SPAN&gt;&lt;SPAN&gt; ))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Sipariş miktarı max per Tarih = &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;MAXX&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;KEEPFILTERS&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;VALUES&lt;/SPAN&gt;&lt;SPAN&gt;('Tarih'[Tarih])),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;SUM&lt;/SPAN&gt;&lt;SPAN&gt;('Merge1'[Sipariş miktarı]))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 26 Dec 2022 08:03:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-amount-of-orders-without-blanks-and-gets-previous/m-p/2988495#M100432</guid>
      <dc:creator>bburcu</dc:creator>
      <dc:date>2022-12-26T08:03:59Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate amount of orders without blanks and gets previous value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-amount-of-orders-without-blanks-and-gets-previous/m-p/2988501#M100435</link>
      <description>&lt;P&gt;&lt;SPAN&gt;VAR PreviousRow = CALCULATE( IF(isblank([Order Amount]), OFFSET( -1, ALLSELECTED('Table'[Order Amount]), ORDERBY('Table'[Order Amount], ASC) ) ))&lt;BR /&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="464380" data-lia-user-login="bburcu" class="lia-mention lia-mention-user"&gt;bburcu&lt;/a&gt;&amp;nbsp;If this post helps, please consider accept as solution to help other members find it more quickly.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Dec 2022 08:12:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-amount-of-orders-without-blanks-and-gets-previous/m-p/2988501#M100435</guid>
      <dc:creator>Mahesh0016</dc:creator>
      <dc:date>2022-12-26T08:12:03Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate amount of orders without blanks and gets previous value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-amount-of-orders-without-blanks-and-gets-previous/m-p/2988753#M100459</link>
      <description>&lt;P&gt;Thank you for your answer but it doesn't work. Also I modified your measure and just one row (18.03.2022) is work. You can see in below picture.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Siparis miktarı güncel = &lt;/SPAN&gt;&lt;SPAN&gt;IF&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;ISBLANK&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;[Measure]&lt;/SPAN&gt;&lt;SPAN&gt;) ,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;[Measure]&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;OFFSET&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; -&lt;/SPAN&gt;&lt;SPAN&gt;1&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;ALL&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Tarih'&lt;/SPAN&gt;&lt;SPAN&gt;[Tarih]&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;ORDERBY&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Tarih'&lt;/SPAN&gt;&lt;SPAN&gt;[Tarih]&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;ASC&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;ALL&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Tarih'&lt;/SPAN&gt;&lt;SPAN&gt;)),&lt;/SPAN&gt;&lt;SPAN&gt;SUMX&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Table'&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;'Table'&lt;/SPAN&gt;&lt;SPAN&gt;[Sipariş mikt.]&lt;/SPAN&gt;&lt;SPAN&gt;))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Note: Sipariş mikt. = Order amount&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Measure = &lt;/SPAN&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;SUM&lt;/SPAN&gt;&lt;SPAN&gt;('Table'[Sipariş mikt.]))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 26 Dec 2022 11:39:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-amount-of-orders-without-blanks-and-gets-previous/m-p/2988753#M100459</guid>
      <dc:creator>bburcu</dc:creator>
      <dc:date>2022-12-26T11:39:35Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate amount of orders without blanks and gets previous value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-amount-of-orders-without-blanks-and-gets-previous/m-p/2988870#M100473</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="464380" data-lia-user-login="bburcu" class="lia-mention lia-mention-user"&gt;bburcu&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Which column are you placing in the columns of the matrix? From which table?&lt;/P&gt;</description>
      <pubDate>Mon, 26 Dec 2022 13:55:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-amount-of-orders-without-blanks-and-gets-previous/m-p/2988870#M100473</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-12-26T13:55:05Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate amount of orders without blanks and gets previous value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-amount-of-orders-without-blanks-and-gets-previous/m-p/2988890#M100478</link>
      <description>&lt;P&gt;Date info of rows are from date table which created query.&lt;/P&gt;&lt;P&gt;"Hafta" info of columns are from Table (main dataset). There are no some records in the main table but appear the blanks rows relational with date table.&lt;BR /&gt;Two date info especially weeks are different each other.&lt;/P&gt;</description>
      <pubDate>Mon, 26 Dec 2022 14:12:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-amount-of-orders-without-blanks-and-gets-previous/m-p/2988890#M100478</guid>
      <dc:creator>bburcu</dc:creator>
      <dc:date>2022-12-26T14:12:38Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate amount of orders without blanks and gets previous value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-amount-of-orders-without-blanks-and-gets-previous/m-p/2989010#M100493</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="464380" data-lia-user-login="bburcu" class="lia-mention lia-mention-user"&gt;bburcu&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please try&lt;/P&gt;
&lt;P&gt;Siparis miktarı güncel =&lt;BR /&gt;VAR LastRecordsWithData =&lt;BR /&gt;CALCULATETABLE (&lt;BR /&gt;TOPN ( 1, 'Table', 'Table'[Tarih] ),&lt;BR /&gt;ALL ( 'Tarih' ),&lt;BR /&gt;VALUES ( 'Tarih'[Hafta] )&lt;BR /&gt;)&lt;BR /&gt;VAR PreviousValue =&lt;BR /&gt;SUMX ( LastRecordsWithData, 'Table'[Sipariş mikt.] )&lt;BR /&gt;RETURN&lt;BR /&gt;COALESCE ( [Measure], PreviousValue )&lt;/P&gt;</description>
      <pubDate>Mon, 26 Dec 2022 16:15:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-amount-of-orders-without-blanks-and-gets-previous/m-p/2989010#M100493</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-12-26T16:15:24Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate amount of orders without blanks and gets previous value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-amount-of-orders-without-blanks-and-gets-previous/m-p/2989164#M100506</link>
      <description>&lt;P&gt;I'm trying COALESCE function return 1 instead of blank values. "PreviousValue" doesn't work obviously &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Dec 2022 18:59:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-amount-of-orders-without-blanks-and-gets-previous/m-p/2989164#M100506</guid>
      <dc:creator>bburcu</dc:creator>
      <dc:date>2022-12-26T18:59:00Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate amount of orders without blanks and gets previous value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-amount-of-orders-without-blanks-and-gets-previous/m-p/2989189#M100507</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="464380" data-lia-user-login="bburcu" class="lia-mention lia-mention-user"&gt;bburcu&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please look closely at my code and notice when I use 'Table' and when I use 'Tarih'&lt;/P&gt;
&lt;P&gt;Also I sid not use [Measure] inside SUMX rather I used the column reference directly. Please try exactly as proposed and let me know if it works.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Dec 2022 19:41:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-amount-of-orders-without-blanks-and-gets-previous/m-p/2989189#M100507</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-12-26T19:41:25Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate amount of orders without blanks and gets previous value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-amount-of-orders-without-blanks-and-gets-previous/m-p/2989556#M100521</link>
      <description>&lt;P&gt;It's work but there is an another problem &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;week 12 should be continue with 20, is there any suggestion for this issue?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Dec 2022 05:58:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-amount-of-orders-without-blanks-and-gets-previous/m-p/2989556#M100521</guid>
      <dc:creator>bburcu</dc:creator>
      <dc:date>2022-12-27T05:58:01Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate amount of orders without blanks and gets previous value</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-amount-of-orders-without-blanks-and-gets-previous/m-p/2989640#M100526</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="464380" data-lia-user-login="bburcu" class="lia-mention lia-mention-user"&gt;bburcu&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Please try&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;Siparis miktarı güncel =
VAR CurrentDate =
    MAX ( 'Tarih'[Tarih] )
VAR LastRecordsWithData =
    CALCULATETABLE (
        TOPN ( 1, 'Table', 'Table'[Kayet tarihi] ),
        ALL ( 'Tarih' ),
        'Tarih'[Tarih] &amp;lt; CurrentDate
    )
VAR PreviousValue =
    SUMX ( LastRecordsWithData, 'Table'[Sipariş mikt.] )
RETURN
    COALESCE ( [Measure], PreviousValue )&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 27 Dec 2022 07:13:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculate-amount-of-orders-without-blanks-and-gets-previous/m-p/2989640#M100526</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-12-27T07:13:56Z</dc:date>
    </item>
  </channel>
</rss>

