<?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: Take previous Cumulated Value if blank matrix visual in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Take-previous-Cumulated-Value-if-blank-matrix-visual/m-p/3617266#M139846</link>
    <description>&lt;P&gt;hi,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="456350" data-lia-user-login="sam_gift" class="lia-mention lia-mention-user"&gt;sam_gift&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;try below&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Cumulative Amount = 
sumx( 
   filter(
      Sheet1,
      'Sheet1'[Day]&amp;lt;=max('Sheet1'[Day])
   ),
   'Sheet1'[Amount]    
  )
&lt;/LI-CODE&gt;</description>
    <pubDate>Fri, 05 Jan 2024 08:04:48 GMT</pubDate>
    <dc:creator>Dangar332</dc:creator>
    <dc:date>2024-01-05T08:04:48Z</dc:date>
    <item>
      <title>Take previous Cumulated Value if blank matrix visual</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Take-previous-Cumulated-Value-if-blank-matrix-visual/m-p/3616548#M139825</link>
      <description>&lt;P&gt;Hi, I have a matrix where Day on X-Axis, Year and Quarter on Y-axis. Cumulated amount on Values.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;wherever there is a blank, it should take the previous amount instead of displaying blank. for example, on Day 2 for 2024 Q1, it should show 787,544. On day 6,7,8 for 2023 Q4, it should show 10,201,258.&amp;nbsp;&lt;BR /&gt;below is the dax for cumulative amount.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Cumulative Amount = 
var maxnum = MAX('Sheet1'[Day])
var tmp = FILTER(ALL(Sheet1[Day]),'Sheet1'[Day]&amp;lt;=maxnum)
return CALCULATE(SUM('Sheet1'[Amount]),tmp)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;Please help&lt;/P&gt;</description>
      <pubDate>Thu, 04 Jan 2024 22:18:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Take-previous-Cumulated-Value-if-blank-matrix-visual/m-p/3616548#M139825</guid>
      <dc:creator>sam_gift</dc:creator>
      <dc:date>2024-01-04T22:18:22Z</dc:date>
    </item>
    <item>
      <title>Re: Take previous Cumulated Value if blank matrix visual</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Take-previous-Cumulated-Value-if-blank-matrix-visual/m-p/3617266#M139846</link>
      <description>&lt;P&gt;hi,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="456350" data-lia-user-login="sam_gift" class="lia-mention lia-mention-user"&gt;sam_gift&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;try below&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Cumulative Amount = 
sumx( 
   filter(
      Sheet1,
      'Sheet1'[Day]&amp;lt;=max('Sheet1'[Day])
   ),
   'Sheet1'[Amount]    
  )
&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 05 Jan 2024 08:04:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Take-previous-Cumulated-Value-if-blank-matrix-visual/m-p/3617266#M139846</guid>
      <dc:creator>Dangar332</dc:creator>
      <dc:date>2024-01-05T08:04:48Z</dc:date>
    </item>
    <item>
      <title>Re: Take previous Cumulated Value if blank matrix visual</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Take-previous-Cumulated-Value-if-blank-matrix-visual/m-p/3617402#M139852</link>
      <description>&lt;P&gt;You haven't shared where the "year - quarter" column comes from. If that column is also in that same table, then there's no way to fix this with a measure. (try testing it with a dummy measure, like "Test Amount = 1"; if you still have blanks in your matrix than measures can't fix this).&lt;BR /&gt;So you probaly need to remodel a bit and use a proper date dimension.&lt;/P&gt;</description>
      <pubDate>Fri, 05 Jan 2024 09:12:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Take-previous-Cumulated-Value-if-blank-matrix-visual/m-p/3617402#M139852</guid>
      <dc:creator>sjoerdvn</dc:creator>
      <dc:date>2024-01-05T09:12:53Z</dc:date>
    </item>
    <item>
      <title>Re: Take previous Cumulated Value if blank matrix visual</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Take-previous-Cumulated-Value-if-blank-matrix-visual/m-p/3618106#M139877</link>
      <description>&lt;P&gt;Hey thanks for the advise! I have created proper date dimension and now the dummy measure is giving no blanks. How can I change the measure now? Thanks !&lt;/P&gt;</description>
      <pubDate>Fri, 05 Jan 2024 15:32:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Take-previous-Cumulated-Value-if-blank-matrix-visual/m-p/3618106#M139877</guid>
      <dc:creator>sam_gift</dc:creator>
      <dc:date>2024-01-05T15:32:20Z</dc:date>
    </item>
    <item>
      <title>Re: Take previous Cumulated Value if blank matrix visual</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Take-previous-Cumulated-Value-if-blank-matrix-visual/m-p/3618246#M139880</link>
      <description>&lt;P&gt;Well, To help with that I would need information on the date dimension and the relationship(s) with the fact table....&lt;/P&gt;</description>
      <pubDate>Fri, 05 Jan 2024 16:33:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Take-previous-Cumulated-Value-if-blank-matrix-visual/m-p/3618246#M139880</guid>
      <dc:creator>sjoerdvn</dc:creator>
      <dc:date>2024-01-05T16:33:19Z</dc:date>
    </item>
    <item>
      <title>Re: Take previous Cumulated Value if blank matrix visual</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Take-previous-Cumulated-Value-if-blank-matrix-visual/m-p/3618280#M139883</link>
      <description>&lt;P&gt;Hi Here is the sample data I am working with.&amp;nbsp; &amp;nbsp;&lt;A href="https://drive.google.com/drive/u/0/folders/1GpELeyAoM8b1PzhyIeTqyqwmdBj9yrFx" target="_self"&gt;File&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 05 Jan 2024 16:46:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Take-previous-Cumulated-Value-if-blank-matrix-visual/m-p/3618280#M139883</guid>
      <dc:creator>sam_gift</dc:creator>
      <dc:date>2024-01-05T16:46:34Z</dc:date>
    </item>
    <item>
      <title>Re: Take previous Cumulated Value if blank matrix visual</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Take-previous-Cumulated-Value-if-blank-matrix-visual/m-p/3621934#M140070</link>
      <description>&lt;P&gt;not authorized for that link.&lt;/P&gt;</description>
      <pubDate>Mon, 08 Jan 2024 08:58:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Take-previous-Cumulated-Value-if-blank-matrix-visual/m-p/3621934#M140070</guid>
      <dc:creator>sjoerdvn</dc:creator>
      <dc:date>2024-01-08T08:58:07Z</dc:date>
    </item>
  </channel>
</rss>

