<?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: cumul of value in Matrix in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/cumul-of-value-in-Matrix/m-p/2622160#M76421</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="233670" data-lia-user-login="arichard19" class="lia-mention lia-mention-user"&gt;arichard19&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;your solution is working but the&amp;nbsp; &amp;nbsp;blank&amp;nbsp; &amp;nbsp;need to be filled also&amp;nbsp; ( see&amp;nbsp; screenshot below)&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>Wed, 06 Jul 2022 10:21:32 GMT</pubDate>
    <dc:creator>paololito</dc:creator>
    <dc:date>2022-07-06T10:21:32Z</dc:date>
    <item>
      <title>cumul of value in Matrix</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/cumul-of-value-in-Matrix/m-p/2622093#M76409</link>
      <description>&lt;P&gt;Hello community,&lt;/P&gt;&lt;P&gt;I'm looking to do a dax calculation in my matrix&amp;nbsp; but unfortunately I dind't find the way to achieve this .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;what I have&amp;nbsp; :&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;what I would like&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;G/L #&lt;/TD&gt;&lt;TD&gt;2012&lt;/TD&gt;&lt;TD&gt;2013&lt;/TD&gt;&lt;TD&gt;2014&lt;/TD&gt;&lt;TD&gt;2015&lt;/TD&gt;&lt;TD&gt;2016&lt;/TD&gt;&lt;TD&gt;2017&lt;/TD&gt;&lt;TD&gt;2018&lt;/TD&gt;&lt;TD&gt;2019&lt;/TD&gt;&lt;TD&gt;2020&lt;/TD&gt;&lt;TD&gt;2021&lt;/TD&gt;&lt;TD&gt;2022&lt;/TD&gt;&lt;TD&gt;2023&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;131000&lt;/TD&gt;&lt;TD&gt;1.100.000&lt;/TD&gt;&lt;TD&gt;&lt;FONT color="#000000"&gt;1.100.000&lt;/FONT&gt;&lt;/TD&gt;&lt;TD&gt;1.100.000&lt;/TD&gt;&lt;TD&gt;1.150.000&lt;/TD&gt;&lt;TD&gt;1.300.000&lt;/TD&gt;&lt;TD&gt;1.300.000&lt;/TD&gt;&lt;TD&gt;1.400.000&lt;/TD&gt;&lt;TD&gt;1.500.000&lt;/TD&gt;&lt;TD&gt;1.800.000&lt;/TD&gt;&lt;TD&gt;2.100.000&lt;/TD&gt;&lt;TD&gt;2.100.000&lt;/TD&gt;&lt;TD&gt;2.100.000&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;can you please help me on this request ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks a lot&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;paololito&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Jul 2022 09:58:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/cumul-of-value-in-Matrix/m-p/2622093#M76409</guid>
      <dc:creator>paololito</dc:creator>
      <dc:date>2022-07-06T09:58:50Z</dc:date>
    </item>
    <item>
      <title>Re: cumul of value in Matrix</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/cumul-of-value-in-Matrix/m-p/2622112#M76412</link>
      <description>&lt;P&gt;If you are hoping to calaculate the running cumulative total of your balance sheet from you General Ledgers something like this would be helpful -&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Running General Ledger Amount =&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;( &lt;/SPAN&gt;&lt;SPAN&gt;SUM&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'General Ledger Entries'[Amount]&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;Calender[Date]&lt;/SPAN&gt;&lt;SPAN&gt;), &lt;/SPAN&gt;&lt;SPAN&gt;Calender[Date]&lt;/SPAN&gt;&lt;SPAN&gt; &amp;lt;= &lt;/SPAN&gt;&lt;SPAN&gt;MAX&lt;/SPAN&gt;&lt;SPAN&gt;((&lt;/SPAN&gt;&lt;SPAN&gt;Calender[Date]&lt;/SPAN&gt;&lt;SPAN&gt;))))&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;You will need a calendar within your data model -&lt;A href="https://radacad.com/creating-calendar-table-in-power-bi-using-dax-functions" target="_blank"&gt;&amp;nbsp;https://radacad.com/creating-calendar-table-in-power-bi-using-dax-functions&lt;/A&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 06 Jul 2022 10:09:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/cumul-of-value-in-Matrix/m-p/2622112#M76412</guid>
      <dc:creator>arichard19</dc:creator>
      <dc:date>2022-07-06T10:09:37Z</dc:date>
    </item>
    <item>
      <title>Re: cumul of value in Matrix</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/cumul-of-value-in-Matrix/m-p/2622113#M76413</link>
      <description>&lt;P&gt;HI&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="368503" data-lia-user-login="paololito" class="lia-mention lia-mention-user"&gt;paololito&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;The year column from which table? What is the name of the column used in the values of the matrix? From which table? G/L# from which table. Any relationships?&lt;/P&gt;</description>
      <pubDate>Wed, 06 Jul 2022 10:08:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/cumul-of-value-in-Matrix/m-p/2622113#M76413</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-07-06T10:08:39Z</dc:date>
    </item>
    <item>
      <title>Re: cumul of value in Matrix</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/cumul-of-value-in-Matrix/m-p/2622143#M76417</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="317289" data-lia-user-login="tamerj1" class="lia-mention lia-mention-user"&gt;tamerj1&lt;/a&gt;&amp;nbsp;, thanks for your fast reply .&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;The year column from which table?&amp;nbsp; &amp;nbsp; FactEntry[FinYear] is calculated column based on a posting date&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;What is the name of the column used in the values of the matrix?&amp;nbsp; &amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Row :&amp;nbsp;G/L # of the Table DimAccount&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Column : Fin Year (calculated column)&amp;nbsp; of the Table FactEntry&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Value = Amount of the table Factentry&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Jul 2022 10:17:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/cumul-of-value-in-Matrix/m-p/2622143#M76417</guid>
      <dc:creator>paololito</dc:creator>
      <dc:date>2022-07-06T10:17:36Z</dc:date>
    </item>
    <item>
      <title>Re: cumul of value in Matrix</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/cumul-of-value-in-Matrix/m-p/2622160#M76421</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="233670" data-lia-user-login="arichard19" class="lia-mention lia-mention-user"&gt;arichard19&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;your solution is working but the&amp;nbsp; &amp;nbsp;blank&amp;nbsp; &amp;nbsp;need to be filled also&amp;nbsp; ( see&amp;nbsp; screenshot below)&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>Wed, 06 Jul 2022 10:21:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/cumul-of-value-in-Matrix/m-p/2622160#M76421</guid>
      <dc:creator>paololito</dc:creator>
      <dc:date>2022-07-06T10:21:32Z</dc:date>
    </item>
    <item>
      <title>Re: cumul of value in Matrix</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/cumul-of-value-in-Matrix/m-p/2622624#M76456</link>
      <description>&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;The solution proposed bu&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="233670" data-lia-user-login="arichard19" class="lia-mention lia-mention-user"&gt;arichard19&lt;/a&gt;&amp;nbsp; seems be a good starting point but how I can also fill the blank value ?&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Running General Ledger Amount =&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;SUM&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'General Ledger Entries'[Amount]&lt;/SPAN&gt;&lt;SPAN&gt;),&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;FILTER&lt;/SPAN&gt;&lt;SPAN&gt;(&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;ALL&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Calender[Date]&lt;/SPAN&gt;&lt;SPAN&gt;),&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;Calender[Date]&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&amp;lt;=&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;MAX&lt;/SPAN&gt;&lt;SPAN&gt;((&lt;/SPAN&gt;&lt;SPAN&gt;Calender[Date]&lt;/SPAN&gt;&lt;SPAN&gt;))))&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;img /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;does anyone have a solution ?&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Thanks a lot for your help !&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 06 Jul 2022 13:15:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/cumul-of-value-in-Matrix/m-p/2622624#M76456</guid>
      <dc:creator>paololito</dc:creator>
      <dc:date>2022-07-06T13:15:58Z</dc:date>
    </item>
    <item>
      <title>Re: cumul of value in Matrix</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/cumul-of-value-in-Matrix/m-p/2622693#M76463</link>
      <description>&lt;P&gt;If I recreate the scenario shown above, the DAX measure I suggested fills the blank values as well within my own Power BI files.&lt;BR /&gt;&lt;BR /&gt;You may want to reevaluate the structure of your Calendar Table and the relationships built between your General Ledgers and the Calendar Table.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Also, make sure you have time intelligence active in your file&lt;/P&gt;</description>
      <pubDate>Wed, 06 Jul 2022 13:39:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/cumul-of-value-in-Matrix/m-p/2622693#M76463</guid>
      <dc:creator>arichard19</dc:creator>
      <dc:date>2022-07-06T13:39:08Z</dc:date>
    </item>
    <item>
      <title>Re: cumul of value in Matrix</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/cumul-of-value-in-Matrix/m-p/2630411#M76924</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="368503" data-lia-user-login="paololito" class="lia-mention lia-mention-user"&gt;paololito&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You need to create a separate calendar table for the field "Year" on the matrix column, and then create the measure based on the new field "Year" in separate calendar table and the original Row field in the fact table.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;BR /&gt;Community Support Team _ Eason&lt;/P&gt;</description>
      <pubDate>Mon, 11 Jul 2022 09:09:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/cumul-of-value-in-Matrix/m-p/2630411#M76924</guid>
      <dc:creator>v-easonf-msft</dc:creator>
      <dc:date>2022-07-11T09:09:01Z</dc:date>
    </item>
    <item>
      <title>Re: cumul of value in Matrix</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/cumul-of-value-in-Matrix/m-p/2692478#M81112</link>
      <description>&lt;P&gt;Hello ,&lt;/P&gt;&lt;P&gt;Unfortunatelly, I don't find the way to achieve the solution proposed .&lt;/P&gt;&lt;P&gt;I want to fill the empty cell with the last non-empty value .&lt;/P&gt;&lt;P&gt;Can you please ask again your support on this matter .&lt;/P&gt;&lt;P&gt;&amp;nbsp;All fields related to this matrix are on the same table ( column , row , value)&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;paololito&lt;/P&gt;</description>
      <pubDate>Wed, 10 Aug 2022 14:29:09 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/cumul-of-value-in-Matrix/m-p/2692478#M81112</guid>
      <dc:creator>paololito</dc:creator>
      <dc:date>2022-08-10T14:29:09Z</dc:date>
    </item>
  </channel>
</rss>

