<?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 Expression in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/Dax-Expression/m-p/2092946#M31976</link>
    <description>&lt;P&gt;Hi &lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/7492"&gt;@collinq&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Thanks for the response.&lt;/P&gt;&lt;P&gt;Am trying to figure out sum of customer count in each month.&lt;/P&gt;&lt;P&gt;Let say in 31 jan 2021 active customer count is&amp;nbsp; 2000,then feb there is no customer addition and customer count in 28 feb is 2000.So here there is no change in count ,i will not get the data from source,because we pulling data that have a change.In this case there is no record for particular operator in Feb but i want show count in visual that is same as january.Again the if the march month also dont have any change,i want show same figure as in january.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 23 Sep 2021 04:36:29 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2021-09-23T04:36:29Z</dc:date>
    <item>
      <title>Dax Expression</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Dax-Expression/m-p/2090667#M31969</link>
      <description>&lt;P&gt;I have table with date wise data,i want to show the value based on month end.&lt;/P&gt;&lt;P&gt;If it have value in jan 31st and dosnot have value in feb 28 then i want to show same value in 28 feb.&lt;/P&gt;&lt;P&gt;Please help me to create dax expression&lt;/P&gt;</description>
      <pubDate>Wed, 22 Sep 2021 07:54:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Dax-Expression/m-p/2090667#M31969</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-09-22T07:54:56Z</dc:date>
    </item>
    <item>
      <title>Re: Dax Expression</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Dax-Expression/m-p/2092353#M31970</link>
      <description>&lt;P&gt;Hi&amp;nbsp;@Anonymous&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think that this request might be better in the developer forum so I have moved it there.&amp;nbsp; Also, I think a bit more explanation is going to be needed as to what you are truly trying to do - what is the actual thing that you are trying to do, from a logic perspective?&lt;/P&gt;</description>
      <pubDate>Wed, 22 Sep 2021 20:25:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Dax-Expression/m-p/2092353#M31970</guid>
      <dc:creator>collinq</dc:creator>
      <dc:date>2021-09-22T20:25:39Z</dc:date>
    </item>
    <item>
      <title>Re: Dax Expression</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Dax-Expression/m-p/2092946#M31976</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/7492"&gt;@collinq&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Thanks for the response.&lt;/P&gt;&lt;P&gt;Am trying to figure out sum of customer count in each month.&lt;/P&gt;&lt;P&gt;Let say in 31 jan 2021 active customer count is&amp;nbsp; 2000,then feb there is no customer addition and customer count in 28 feb is 2000.So here there is no change in count ,i will not get the data from source,because we pulling data that have a change.In this case there is no record for particular operator in Feb but i want show count in visual that is same as january.Again the if the march month also dont have any change,i want show same figure as in january.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Sep 2021 04:36:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Dax-Expression/m-p/2092946#M31976</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-09-23T04:36:29Z</dc:date>
    </item>
    <item>
      <title>Re: Dax Expression</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Dax-Expression/m-p/2100108#M32074</link>
      <description>&lt;P&gt;Hi&amp;nbsp;@Anonymous&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think you want to create a measure to show rolling total by month.&lt;/P&gt;
&lt;P&gt;Here I build a sample.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="1.png" style="width: 130px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/601459i07197064AE725202/image-size/large?v=v2&amp;amp;px=999" role="button" title="1.png" alt="1.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Build a date table by dax.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Date =
VAR _T =
    ADDCOLUMNS (
        CALENDAR ( DATE ( 2021, 01, 01 ), DATE ( 2021, 05, 31 ) ),
        "Year", YEAR ( [Date] ),
        "Month", MONTH ( [Date] )
    )
VAR _T1 =
    ADDCOLUMNS (
        _T,
        "Last Date each Month",
            MAXX (
                FILTER ( _T, [Year] = EARLIER ( [Year] ) &amp;amp;&amp;amp; [Month] = EARLIER ( [Month] ) ),
                [Date]
            )
    )
RETURN
    _T1&lt;/LI-CODE&gt;
&lt;P&gt;Measure:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Rolling Total = SUMX(FILTER(ALL('Sample'),'Sample'[Date]&amp;lt;=MAX('Date'[Last Date each Month])),'Sample'[QTY])&lt;/LI-CODE&gt;
&lt;P&gt;Result is as below.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="1.png" style="width: 999px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/601460i5D47DA6D44694EC8/image-size/large?v=v2&amp;amp;px=999" role="button" title="1.png" alt="1.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;BR /&gt;Rico Zhou&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.&lt;/P&gt;</description>
      <pubDate>Mon, 27 Sep 2021 09:57:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Dax-Expression/m-p/2100108#M32074</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-09-27T09:57:05Z</dc:date>
    </item>
    <item>
      <title>Re: Dax Expression</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Dax-Expression/m-p/2100138#M32076</link>
      <description>&lt;P&gt;Hi&amp;nbsp;@Anonymous&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Thanks For the response.&lt;/P&gt;&lt;P&gt;This solution meets 90%&amp;nbsp; and only issue was i dont want to sum up Quantity.&lt;/P&gt;&lt;P&gt;ie expected result shown below&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Month&amp;nbsp; Count&lt;/P&gt;&lt;P&gt;Jan&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 1000&lt;/P&gt;&lt;P&gt;Feb&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1000&lt;/P&gt;&lt;P&gt;Mar&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1000&lt;/P&gt;&lt;P&gt;Apr&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 500&lt;/P&gt;&lt;P&gt;May&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;500&lt;/P&gt;&lt;P&gt;Jun&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 500&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The above one is based on the file you shared&lt;/P&gt;</description>
      <pubDate>Mon, 27 Sep 2021 10:39:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Dax-Expression/m-p/2100138#M32076</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-09-27T10:39:35Z</dc:date>
    </item>
    <item>
      <title>Re: Dax Expression</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Dax-Expression/m-p/2101579#M32091</link>
      <description>&lt;P&gt;Hi&amp;nbsp;@Anonymous&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try this code.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Latest QTY = 
VAR _LatestNotBlankDate =
    MAXX (
        FILTER (
            ALL ( 'Sample' ),
            'Sample'[Date] &amp;lt;= MAX ( 'Date'[Last Date each Month] )
        ),
        'Sample'[Date]
    )
VAR _LatestQTY =
    CALCULATE (
        SUM ( 'Sample'[QTY] ),
        FILTER ( ALL ( 'Sample' ), 'Sample'[Date] = _LatestNotBlankDate )
    )
RETURN
    _LatestQTY&lt;/LI-CODE&gt;
&lt;P&gt;Result is as below.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="1.png" style="width: 278px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/601884i010FB14C0CF4AD66/image-size/large?v=v2&amp;amp;px=999" role="button" title="1.png" alt="1.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;BR /&gt;Rico Zhou&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.&lt;/P&gt;</description>
      <pubDate>Tue, 28 Sep 2021 01:52:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Dax-Expression/m-p/2101579#M32091</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-09-28T01:52:33Z</dc:date>
    </item>
    <item>
      <title>Re: Dax Expression</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Dax-Expression/m-p/2101874#M32096</link>
      <description>&lt;P&gt;Hi&amp;nbsp;@Anonymous&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Thanks for the response.&lt;/P&gt;&lt;P&gt;I had altered the messure because i want to make some filters in visuals,so i remove ALL function,please correct me if am&amp;nbsp; wrong.&lt;/P&gt;&lt;P&gt;Also i can see there is no relationship between sample table and date table,it will be help ful if you can explain how its working and when am adding relation the data goes wrong.&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Latest QTY = &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;VAR _LatestNotBlankDate =&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;MAXX (&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;FILTER (&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;'Sample' ,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;'Sample'[Date] &amp;lt;= MAX ( 'Date'[Last Date each Month] )&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;'Sample'[Date]&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;VAR _LatestQTY =&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;CALCULATE (&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;SUM ( 'Sample'[QTY] ),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;FILTER ( 'Sample' , 'Sample'[Date] = _LatestNotBlankDate )&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;RETURN&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;_LatestQTY&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Nazeez_0-1632804528711.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/601998i79CB5287EDFCE6D4/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Nazeez_0-1632804528711.png" alt="Nazeez_0-1632804528711.png" /&gt;&lt;/span&gt;&lt;P&gt;The above one is the result whwn am creating relationships&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 28 Sep 2021 04:50:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Dax-Expression/m-p/2101874#M32096</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-09-28T04:50:01Z</dc:date>
    </item>
    <item>
      <title>Re: Dax Expression</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Dax-Expression/m-p/2102000#M32097</link>
      <description>&lt;P&gt;Hi&amp;nbsp;@Anonymous&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My code will show correct result whether you build relationship between Sample and Date table.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Latest QTY = 
VAR _LatestNotBlankDate =
    MAXX (
        FILTER (
            ALL ( 'Sample' ),
            'Sample'[Date] &amp;lt;= MAX ( 'Date'[Last Date each Month] )
        ),
        'Sample'[Date]
    )
VAR _LatestQTY =
    CALCULATE (
        SUM ( 'Sample'[QTY] ),
        FILTER ( ALL ( 'Sample' ), 'Sample'[Date] = _LatestNotBlankDate )
    )
RETURN
    _LatestQTY&lt;/LI-CODE&gt;
&lt;P&gt;Compare mine with yours, we can see that I use All function in Filter. All function will remove all filters in Sample, calculate the result based on whole sample table. If you don't use All function result will calculate based on current row. So result should be incorrect.&lt;/P&gt;
&lt;P&gt;For reference:&amp;nbsp;&lt;A href="https://www.sqlbi.com/articles/managing-all-functions-in-dax-all-allselected-allnoblankrow-allexcept/" target="_self"&gt;Managing “all” functions in DAX: ALL, ALLSELECTED, ALLNOBLANKROW, ALLEXCEPT&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;BR /&gt;Rico Zhou&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.&lt;/P&gt;</description>
      <pubDate>Tue, 28 Sep 2021 06:12:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Dax-Expression/m-p/2102000#M32097</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-09-28T06:12:19Z</dc:date>
    </item>
    <item>
      <title>Re: Dax Expression</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Dax-Expression/m-p/2102260#M32102</link>
      <description>&lt;P&gt;Hi&amp;nbsp;@Anonymous&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Agreed with you,adding relation&amp;nbsp; will give same result.&lt;/P&gt;&lt;P&gt;I have one more concern ,i want see visual based on some filters in sample table(Date filter working and others not).&lt;/P&gt;&lt;P&gt;Currently its not working,currently i have filtered&amp;nbsp; based on QTY.Like this in my table i have customer names,please help to fix this&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Nazeez_1-1632814512073.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/602129iE1EFDBBCE4BA2F72/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Nazeez_1-1632814512073.png" alt="Nazeez_1-1632814512073.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Sep 2021 11:55:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Dax-Expression/m-p/2102260#M32102</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-09-28T11:55:35Z</dc:date>
    </item>
    <item>
      <title>Re: Dax Expression</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Dax-Expression/m-p/2105246#M32133</link>
      <description>&lt;P&gt;Hi&amp;nbsp;@Anonymous&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Which code did you use in this screenshot? I think you didn't build a relatisonship in above sample. I think you want yo show the QTY at the last day instead sum of the QTY of the whole month. Could you tell me why Jan, Feb and Mar show 2000 in your screenshot? Please show me the result you want by screenshot.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;BR /&gt;Rico Zhou&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Sep 2021 09:41:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Dax-Expression/m-p/2105246#M32133</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-09-29T09:41:56Z</dc:date>
    </item>
    <item>
      <title>Re: Dax Expression</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Dax-Expression/m-p/2105341#M32137</link>
      <description>&lt;P&gt;Hi&amp;nbsp;@Anonymous&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Its by my mistake,i added a duplicate row as same as original data for testing .That is the reason its showing doubled amount.&lt;/P&gt;&lt;P&gt;As you said i want the data as QTY at last day of each month.From your code am getting that result but the issue was i want to filter it by some colums usng slicers.&lt;/P&gt;&lt;P&gt;I had attache screen shot of my actual data and the code used.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1.This is the report am developing,here i want to filter values by column in Data table.&lt;/P&gt;&lt;P&gt;But its not considering my filters&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Nazeez_2-1632910629526.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/603056i16F854E0BCA4E809/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Nazeez_2-1632910629526.png" alt="Nazeez_2-1632910629526.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;2.Meassure i had used given below&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Latest QTY = &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;VAR _LatestNotBlankDate =&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;MAXX (&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;FILTER (&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;ALL ( 'Data' ),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;'Data'[SIM Summary Snapshot: Created Date] &amp;lt;= MAX ( 'Date'[Last Date each Month] )&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Data[SIM Summary Snapshot: Created Date]&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;VAR _LatestQTY =&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;CALCULATE (&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;SUM ( Data[SIM Count] ),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;FILTER (ALL( Data), Data[SIM Summary Snapshot: Created Date] = _LatestNotBlankDate )&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;RETURN&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;_LatestQTY&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;3.Data in the table&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Nazeez_3-1632910689516.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/603057iDAA8DCA480336528/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Nazeez_3-1632910689516.png" alt="Nazeez_3-1632910689516.png" /&gt;&lt;/span&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Sep 2021 10:18:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Dax-Expression/m-p/2105341#M32137</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-09-29T10:18:23Z</dc:date>
    </item>
  </channel>
</rss>

