<?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: Total error when Retrieve the last available value from a table. in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Total-error-when-Retrieve-the-last-available-value-from-a-table/m-p/3591258#M138656</link>
    <description>&lt;P&gt;done, please check the main post.&lt;/P&gt;</description>
    <pubDate>Tue, 19 Dec 2023 12:54:26 GMT</pubDate>
    <dc:creator>Ezzeldin</dc:creator>
    <dc:date>2023-12-19T12:54:26Z</dc:date>
    <item>
      <title>Total error when Retrieve the last available value from a table.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Total-error-when-Retrieve-the-last-available-value-from-a-table/m-p/3587387#M138440</link>
      <description>&lt;P&gt;Dears,&lt;BR /&gt;This is a link for the Power BI file of the below-demonstrated Case:&lt;BR /&gt;&lt;A href="https://www.dropbox.com/scl/fi/8d5sz6w4ksjhr6z9312dr/Use-Case.pbix?rlkey=nytwo1qj4w3tylaatarttqog6&amp;amp;dl=0" target="_blank"&gt;https://www.dropbox.com/scl/fi/8d5sz6w4ksjhr6z9312dr/Use-Case.pbix?rlkey=nytwo1qj4w3tylaatarttqog6&amp;amp;dl=0&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a table called "BRU_Facility_Limit" that has a value for each GL_ID in different Company_Code. as per the below screenshot.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I created a report page containing the following:&lt;BR /&gt;Year slicer that comes from the DATES table&lt;BR /&gt;Month Number slicer that&amp;nbsp;comes from the DATES table&lt;/P&gt;&lt;P&gt;both of these slices filter a table Matrix that has in Rows a Company_Code column from the "COMPANYCODE" table &amp;amp; GL_ID from the "GL_Accounts" table to allow drill down from company code to its GL IDs.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I created a measure that retrieves the last available value of the GL in the "BRU_Facility_Limit" table because the values in this table are not continuous for each month. so if the user chooses Year: 2023 &amp;amp; Month:1 and there are no values for the GL; the measure will return the values of the last available month before the selected Year &amp;amp; Month. To do so I make the relationship between the DATES dimension table and the BRU_Facility_Limit table "inactive"&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The problem is that the Total rows don't sum the total values of the retrieved rows in the visual, it shows the value of the last retrieved available row. the same when I drill up to the Company Code level it doesn't show the Sum of the retrieved GLs but represents the last value of the last retrieved GL.&lt;BR /&gt;this is the measure I used:&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Sum_Facility_Limit =&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;EndDateOfMonth&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;ENDOFMONTH&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;DATES&lt;/SPAN&gt;&lt;SPAN&gt;[Date]&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;MaxDateForAccount&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;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;MAX&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;BRU_Facility_Limit&lt;/SPAN&gt;&lt;SPAN&gt;[Date]&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;BRU_Facility_Limit&lt;/SPAN&gt;&lt;SPAN&gt;[Date]&lt;/SPAN&gt;&lt;SPAN&gt; &amp;lt;= &lt;/SPAN&gt;&lt;SPAN&gt;EndDateOfMonth&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; )&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;SUMX&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;VALUES&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;BRU_Facility_Limit&lt;/SPAN&gt;&lt;SPAN&gt;[GL_ID]&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;SUM&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;BRU_Facility_Limit&lt;/SPAN&gt;&lt;SPAN&gt;[Facility_Limit]&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;BRU_Facility_Limit&lt;/SPAN&gt;&lt;SPAN&gt;[Date]&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;MaxDateForAccount&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; )&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 19 Dec 2023 12:51:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Total-error-when-Retrieve-the-last-available-value-from-a-table/m-p/3587387#M138440</guid>
      <dc:creator>Ezzeldin</dc:creator>
      <dc:date>2023-12-19T12:51:59Z</dc:date>
    </item>
    <item>
      <title>Re: Total error when Retrieve the last available value from a table.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Total-error-when-Retrieve-the-last-available-value-from-a-table/m-p/3589141#M138542</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="367737" data-lia-user-login="Ezzeldin" class="lia-mention lia-mention-user"&gt;Ezzeldin&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;if you want to retriev LASTDATE, try to rework your measure as on link for column&amp;nbsp;"Last date Sales" in example I created.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://dax.do/0qEUdVul7CvnFj/" target="_self"&gt;https://dax.do/0qEUdVul7CvnFj/&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Dec 2023 14:33:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Total-error-when-Retrieve-the-last-available-value-from-a-table/m-p/3589141#M138542</guid>
      <dc:creator>some_bih</dc:creator>
      <dc:date>2023-12-18T14:33:57Z</dc:date>
    </item>
    <item>
      <title>Re: Total error when Retrieve the last available value from a table.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Total-error-when-Retrieve-the-last-available-value-from-a-table/m-p/3590785#M138627</link>
      <description>&lt;P&gt;hello&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="555045" data-lia-user-login="some_bih" class="lia-mention lia-mention-user"&gt;some_bih&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Unfortunately, it is not working, as I need in the report.&lt;/P&gt;</description>
      <pubDate>Tue, 19 Dec 2023 09:00:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Total-error-when-Retrieve-the-last-available-value-from-a-table/m-p/3590785#M138627</guid>
      <dc:creator>Ezzeldin</dc:creator>
      <dc:date>2023-12-19T09:00:18Z</dc:date>
    </item>
    <item>
      <title>Re: Total error when Retrieve the last available value from a table.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Total-error-when-Retrieve-the-last-available-value-from-a-table/m-p/3590980#M138635</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="367737" data-lia-user-login="Ezzeldin" class="lia-mention lia-mention-user"&gt;Ezzeldin&lt;/a&gt;&amp;nbsp;please share file with example and expected output.&lt;/P&gt;</description>
      <pubDate>Tue, 19 Dec 2023 10:12:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Total-error-when-Retrieve-the-last-available-value-from-a-table/m-p/3590980#M138635</guid>
      <dc:creator>some_bih</dc:creator>
      <dc:date>2023-12-19T10:12:20Z</dc:date>
    </item>
    <item>
      <title>Re: Total error when Retrieve the last available value from a table.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Total-error-when-Retrieve-the-last-available-value-from-a-table/m-p/3590993#M138637</link>
      <description>&lt;P&gt;I wanted to attach the Power BI file, but I couldn't find a way to share or attach it to the main question. Can you please guide me on how to share the file?&lt;/P&gt;</description>
      <pubDate>Tue, 19 Dec 2023 10:20:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Total-error-when-Retrieve-the-last-available-value-from-a-table/m-p/3590993#M138637</guid>
      <dc:creator>Ezzeldin</dc:creator>
      <dc:date>2023-12-19T10:20:54Z</dc:date>
    </item>
    <item>
      <title>Re: Total error when Retrieve the last available value from a table.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Total-error-when-Retrieve-the-last-available-value-from-a-table/m-p/3591201#M138650</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="367737" data-lia-user-login="Ezzeldin" class="lia-mention lia-mention-user"&gt;Ezzeldin&lt;/a&gt;&amp;nbsp;use some of "share" programs like Office 365, Dropbox, Google Drive...sharing link (hide sensitive info)&lt;/P&gt;</description>
      <pubDate>Tue, 19 Dec 2023 12:21:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Total-error-when-Retrieve-the-last-available-value-from-a-table/m-p/3591201#M138650</guid>
      <dc:creator>some_bih</dc:creator>
      <dc:date>2023-12-19T12:21:30Z</dc:date>
    </item>
    <item>
      <title>Re: Total error when Retrieve the last available value from a table.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Total-error-when-Retrieve-the-last-available-value-from-a-table/m-p/3591258#M138656</link>
      <description>&lt;P&gt;done, please check the main post.&lt;/P&gt;</description>
      <pubDate>Tue, 19 Dec 2023 12:54:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Total-error-when-Retrieve-the-last-available-value-from-a-table/m-p/3591258#M138656</guid>
      <dc:creator>Ezzeldin</dc:creator>
      <dc:date>2023-12-19T12:54:26Z</dc:date>
    </item>
    <item>
      <title>Re: Total error when Retrieve the last available value from a table.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Total-error-when-Retrieve-the-last-available-value-from-a-table/m-p/3591327#M138668</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="367737" data-lia-user-login="Ezzeldin" class="lia-mention lia-mention-user"&gt;Ezzeldin&lt;/a&gt;&amp;nbsp; I wil check it and let you know.&lt;/P&gt;</description>
      <pubDate>Tue, 19 Dec 2023 13:25:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Total-error-when-Retrieve-the-last-available-value-from-a-table/m-p/3591327#M138668</guid>
      <dc:creator>some_bih</dc:creator>
      <dc:date>2023-12-19T13:25:53Z</dc:date>
    </item>
    <item>
      <title>Re: Total error when Retrieve the last available value from a table.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Total-error-when-Retrieve-the-last-available-value-from-a-table/m-p/3592993#M138743</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="367737" data-lia-user-login="Ezzeldin" class="lia-mention lia-mention-user"&gt;Ezzeldin&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please check your Dates table relationship, usually it should be active and after that play again with dates year and months.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Dec 2023 07:24:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Total-error-when-Retrieve-the-last-available-value-from-a-table/m-p/3592993#M138743</guid>
      <dc:creator>some_bih</dc:creator>
      <dc:date>2023-12-20T07:24:47Z</dc:date>
    </item>
    <item>
      <title>Re: Total error when Retrieve the last available value from a table.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Total-error-when-Retrieve-the-last-available-value-from-a-table/m-p/3593135#M138767</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="555045" data-lia-user-login="some_bih" class="lia-mention lia-mention-user"&gt;some_bih&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;To clarify, the measure's output wasn't behaving as required, so I made the relationship inactive to obtain the last available value per GL. However, the issue is not with the retrieved values themselves, but rather with the totals displayed in the visual.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you in advance for your assistance.&lt;/P&gt;</description>
      <pubDate>Wed, 20 Dec 2023 08:14:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Total-error-when-Retrieve-the-last-available-value-from-a-table/m-p/3593135#M138767</guid>
      <dc:creator>Ezzeldin</dc:creator>
      <dc:date>2023-12-20T08:14:39Z</dc:date>
    </item>
    <item>
      <title>Re: Total error when Retrieve the last available value from a table.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Total-error-when-Retrieve-the-last-available-value-from-a-table/m-p/3593206#M138777</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="367737" data-lia-user-login="Ezzeldin" class="lia-mention lia-mention-user"&gt;Ezzeldin&lt;/a&gt;&amp;nbsp;when&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1. Table Date is set active&lt;/P&gt;
&lt;P&gt;2. Create new measure for simple sum of Facility limit (total 4198257312) as following&lt;/P&gt;
&lt;DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;Sum_simple sum =&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;--simple sum formula&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;SUM&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;BRU_Facility_Limit&lt;/SPAN&gt;&lt;SPAN&gt;[Facility_Limit]&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;you will get total per year on Output&lt;/P&gt;
&lt;P&gt;&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;Output&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Dec 2023 08:44:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Total-error-when-Retrieve-the-last-available-value-from-a-table/m-p/3593206#M138777</guid>
      <dc:creator>some_bih</dc:creator>
      <dc:date>2023-12-20T08:44:59Z</dc:date>
    </item>
    <item>
      <title>Re: Total error when Retrieve the last available value from a table.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Total-error-when-Retrieve-the-last-available-value-from-a-table/m-p/3593585#M138810</link>
      <description>&lt;P&gt;Dear &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="555045" data-lia-user-login="some_bih" class="lia-mention lia-mention-user"&gt;some_bih&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;the business requirements are as follows:&lt;/P&gt;&lt;P&gt;the business enters a limit for each GL whenever changes happen to the limit of the GL.&lt;/P&gt;&lt;P&gt;So the limit value for each GL does not exist for each month, and the business needs to view in the visual all the GLs in the table with the last value limit entered before the selected Month even if there is no value for the GL in the selected month.&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If the user selects Year: 2023 and Month: 1&lt;/P&gt;&lt;P&gt;Then&lt;/P&gt;&lt;P&gt;the value of the GL: 9999 in the visual should be: 60,000 and the value of the GL: 8888 in the visual should be: 90,000&lt;/P&gt;&lt;P&gt;So the total for the company code: 1000 equals: 150,000 and the Row Total = 150,000&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Similarly, If the user selects Year: 2022 and Month:12&lt;/P&gt;&lt;P&gt;Then&lt;/P&gt;&lt;P&gt;the value of the GL: 9999 in the visual should be: 30,000 and the value of the GL: 8888 in the visual should be: 90,000&lt;/P&gt;&lt;P&gt;So the total for the company code: 1000 equals: 120,000 and the Row Total = 120,000&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;That’s what I could manage, by making the relationship inactive and by the measure I did. but it is not behaving right with the totals per company code and the Total row. So I want the GL rows for Year: 2023 &amp;amp; Month: 1 to be the same in the screenshot and the Power BI file but the Totals I want it to be as in the below screenshot&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;&lt;P&gt;Thanks in advance.&lt;/P&gt;</description>
      <pubDate>Wed, 20 Dec 2023 10:54:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Total-error-when-Retrieve-the-last-available-value-from-a-table/m-p/3593585#M138810</guid>
      <dc:creator>Ezzeldin</dc:creator>
      <dc:date>2023-12-20T10:54:26Z</dc:date>
    </item>
    <item>
      <title>Re: Total error when Retrieve the last available value from a table.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Total-error-when-Retrieve-the-last-available-value-from-a-table/m-p/3593697#M138819</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="367737" data-lia-user-login="Ezzeldin" class="lia-mention lia-mention-user"&gt;Ezzeldin&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I could not see your data example in file you provided, table BRU_facility_limit or GL account&lt;/P&gt;
&lt;P&gt;Still, you want to see (I work in accounting and reporting :))&lt;/P&gt;
&lt;P&gt;- 1. "balance carrying amount" / last value per GL account?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;- 2. amounts should be combined meaning if you select 2023 and February per visual it should be shown not only 2023 and Februar but other last amount?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Dec 2023 11:30:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Total-error-when-Retrieve-the-last-available-value-from-a-table/m-p/3593697#M138819</guid>
      <dc:creator>some_bih</dc:creator>
      <dc:date>2023-12-20T11:30:46Z</dc:date>
    </item>
    <item>
      <title>Re: Total error when Retrieve the last available value from a table.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Total-error-when-Retrieve-the-last-available-value-from-a-table/m-p/3593844#M138828</link>
      <description>&lt;P&gt;is use "Enter data" option for every table in the file to allow any one with the file see the data&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;- 1. "balance carrying amount" / last value per GL account?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; **Not the carrying amount only the last value available of a GL.&amp;nbsp;&lt;/P&gt;&lt;P&gt;- 2. amounts should be combined meaning if you select 2023 and February per visual it should be shown not only 2023 and Februar but other last amount?&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;**Yes&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Dec 2023 12:14:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Total-error-when-Retrieve-the-last-available-value-from-a-table/m-p/3593844#M138828</guid>
      <dc:creator>Ezzeldin</dc:creator>
      <dc:date>2023-12-20T12:14:04Z</dc:date>
    </item>
    <item>
      <title>Re: Total error when Retrieve the last available value from a table.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Total-error-when-Retrieve-the-last-available-value-from-a-table/m-p/3593885#M138830</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="367737" data-lia-user-login="Ezzeldin" class="lia-mention lia-mention-user"&gt;Ezzeldin&lt;/a&gt;&amp;nbsp;I will take a look and provide answer.&lt;/P&gt;</description>
      <pubDate>Wed, 20 Dec 2023 12:26:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Total-error-when-Retrieve-the-last-available-value-from-a-table/m-p/3593885#M138830</guid>
      <dc:creator>some_bih</dc:creator>
      <dc:date>2023-12-20T12:26:58Z</dc:date>
    </item>
    <item>
      <title>Re: Total error when Retrieve the last available value from a table.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Total-error-when-Retrieve-the-last-available-value-from-a-table/m-p/3593992#M138843</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="367737" data-lia-user-login="Ezzeldin" class="lia-mention lia-mention-user"&gt;Ezzeldin&lt;/a&gt;&amp;nbsp;your data are always on end of month level or not?&lt;/P&gt;</description>
      <pubDate>Wed, 20 Dec 2023 13:05:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Total-error-when-Retrieve-the-last-available-value-from-a-table/m-p/3593992#M138843</guid>
      <dc:creator>some_bih</dc:creator>
      <dc:date>2023-12-20T13:05:54Z</dc:date>
    </item>
    <item>
      <title>Re: Total error when Retrieve the last available value from a table.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Total-error-when-Retrieve-the-last-available-value-from-a-table/m-p/3593996#M138844</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="555045" data-lia-user-login="some_bih" class="lia-mention lia-mention-user"&gt;some_bih&lt;/a&gt;, not a must.&lt;/P&gt;</description>
      <pubDate>Wed, 20 Dec 2023 13:07:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Total-error-when-Retrieve-the-last-available-value-from-a-table/m-p/3593996#M138844</guid>
      <dc:creator>Ezzeldin</dc:creator>
      <dc:date>2023-12-20T13:07:51Z</dc:date>
    </item>
    <item>
      <title>Re: Total error when Retrieve the last available value from a table.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Total-error-when-Retrieve-the-last-available-value-from-a-table/m-p/3596852#M138971</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="367737" data-lia-user-login="Ezzeldin" class="lia-mention lia-mention-user"&gt;Ezzeldin&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Check enclosed file. I created two measures as below.&lt;/P&gt;
&lt;P&gt;I check for two GL ID's as shown on picture below&lt;/P&gt;
&lt;DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;Sum_simple sum =&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;--simple sum formula&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;SUM&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;BRU_Facility_Limit&lt;/SPAN&gt;&lt;SPAN&gt;[Facility_Limit]&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;Sum adjusted =&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;IF&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;ISEMPTY&lt;/SPAN&gt;&lt;SPAN&gt; ( &lt;/SPAN&gt;&lt;SPAN&gt;BRU_Facility_Limit&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;SPAN&gt;[Sum_simple sum]&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;OFFSET&lt;/SPAN&gt;&lt;SPAN&gt; ( -&lt;/SPAN&gt;&lt;SPAN&gt;1&lt;/SPAN&gt;&lt;SPAN&gt;,, &lt;/SPAN&gt;&lt;SPAN&gt;ORDERBY&lt;/SPAN&gt;&lt;SPAN&gt; ( &lt;/SPAN&gt;&lt;SPAN&gt;'DATES'&lt;/SPAN&gt;&lt;SPAN&gt;[Date]&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;[Sum_simple sum]&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;
&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>Thu, 21 Dec 2023 13:08:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Total-error-when-Retrieve-the-last-available-value-from-a-table/m-p/3596852#M138971</guid>
      <dc:creator>some_bih</dc:creator>
      <dc:date>2023-12-21T13:08:20Z</dc:date>
    </item>
    <item>
      <title>Re: Total error when Retrieve the last available value from a table.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Total-error-when-Retrieve-the-last-available-value-from-a-table/m-p/3600869#M139138</link>
      <description>&lt;P&gt;if gives me an error.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 25 Dec 2023 08:15:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Total-error-when-Retrieve-the-last-available-value-from-a-table/m-p/3600869#M139138</guid>
      <dc:creator>Ezzeldin</dc:creator>
      <dc:date>2023-12-25T08:15:33Z</dc:date>
    </item>
    <item>
      <title>Re: Total error when Retrieve the last available value from a table.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Total-error-when-Retrieve-the-last-available-value-from-a-table/m-p/3601043#M139146</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="367737" data-lia-user-login="Ezzeldin" class="lia-mention lia-mention-user"&gt;Ezzeldin&lt;/a&gt;&amp;nbsp;this is known bug. Dont worry, check results&lt;/P&gt;</description>
      <pubDate>Mon, 25 Dec 2023 10:29:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Total-error-when-Retrieve-the-last-available-value-from-a-table/m-p/3601043#M139146</guid>
      <dc:creator>some_bih</dc:creator>
      <dc:date>2023-12-25T10:29:22Z</dc:date>
    </item>
  </channel>
</rss>

