<?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: Running Total with LASTNONBLANKVALUE in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Total-with-LASTNONBLANKVALUE/m-p/4271790#M169442</link>
    <description>&lt;P&gt;Hey there!&lt;/P&gt;&lt;P&gt;Here’s how you can achieve this in Power BI:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;1. Create the "Sales projected" Column:&lt;/STRONG&gt;&lt;BR /&gt;- Use the last non-blank sales value to fill in projected sales for future weeks.&lt;BR /&gt;- You can create a calculated column like this:&lt;/P&gt;&lt;P&gt;DAX&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Sales projected =
IF(
[Index] &amp;gt;= 0,
CALCULATE(
LASTNONBLANKVALUE('Table'[Sales], 'Table'[Sales]),
FILTER('Table', [Index] = 0)
),
[Sales]
)&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;- This will keep actual sales for past weeks and use the last available sales value as a projection for future weeks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;2. Create the "Running Total Sales" Column:&lt;/STRONG&gt;&lt;BR /&gt;- Now, calculate the running total, starting from the week with `Index = 0` and using the projected sales value.&lt;/P&gt;&lt;P&gt;DAX&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Running Total Sales =
CALCULATE(
SUM('Table'[Sales projected]),
FILTER(
ALL('Table'),
'Table'[Year-Week] &amp;lt;= EARLIER('Table'[Year-Week]) &amp;amp;&amp;amp; 'Table'[Index] &amp;gt;= 0
)
)&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;- This formula will accumulate the "Sales projected" values from the week where `Index = 0` onward.&lt;/P&gt;&lt;P&gt;These formulas should give you the result you’re looking for: the projected sales for future weeks and a running total starting from `Index = 0`.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please mark this as solutionif this helps! &lt;span class="lia-unicode-emoji" title=":smiling_face_with_smiling_eyes:"&gt;😊&lt;/span&gt;. Appreciate Kudos&lt;/P&gt;</description>
    <pubDate>Wed, 06 Nov 2024 04:50:34 GMT</pubDate>
    <dc:creator>FarhanJeelani</dc:creator>
    <dc:date>2024-11-06T04:50:34Z</dc:date>
    <item>
      <title>Running Total with LASTNONBLANKVALUE</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Total-with-LASTNONBLANKVALUE/m-p/4271485#M169424</link>
      <description>&lt;P&gt;Hey community!&lt;/P&gt;&lt;P&gt;I have a table visualization that shows me the sales per year-week:&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Year-Week&lt;/TD&gt;&lt;TD&gt;Index&lt;/TD&gt;&lt;TD&gt;Sales&lt;/TD&gt;&lt;TD&gt;Sales projected&lt;/TD&gt;&lt;TD&gt;Running Total Sales&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2024-01&lt;/TD&gt;&lt;TD&gt;-1&lt;/TD&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2024-02&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;TD&gt;6&lt;/TD&gt;&lt;TD&gt;6&lt;/TD&gt;&lt;TD&gt;6&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2024-03&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;6&lt;/TD&gt;&lt;TD&gt;12&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2024-04&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;6&lt;/TD&gt;&lt;TD&gt;18&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2024-05&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;6&lt;/TD&gt;&lt;TD&gt;24&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here I would like to add a column "Sales projected" that will extrapolate the last sales for the next weeks where Index =0&lt;/P&gt;&lt;P&gt;Based on that I would like to add another column with the running total with the sames "Sales projected", starting with Index = 0.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How would you do that with a DAX Measure?&lt;/P&gt;</description>
      <pubDate>Tue, 05 Nov 2024 23:43:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Total-with-LASTNONBLANKVALUE/m-p/4271485#M169424</guid>
      <dc:creator>joshua1990</dc:creator>
      <dc:date>2024-11-05T23:43:39Z</dc:date>
    </item>
    <item>
      <title>Re: Running Total with LASTNONBLANKVALUE</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Total-with-LASTNONBLANKVALUE/m-p/4271491#M169425</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="92006" data-lia-user-login="joshua1990" class="lia-mention lia-mention-user"&gt;joshua1990&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Can you post sample data as text?&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;SPAN&gt;The most important parts are:&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;BR /&gt;1. Sample data as text, use the table tool in the editing bar&lt;BR /&gt;2. Expected output from sample data (As you shared already)&lt;BR /&gt;3. Explanation in words of how to get from 1. to 2.(As you shared already)&lt;BR /&gt;4. Relation between your tables&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;SPAN&gt;Appreciate your Kudos!!&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;SPAN&gt;LinkedIn:&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN&gt;&lt;A href="https://www.linkedin.com/in/vahid-dm/" target="_blank"&gt;www.linkedin.com/in/vahid-dm/&lt;/A&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Nov 2024 23:54:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Total-with-LASTNONBLANKVALUE/m-p/4271491#M169425</guid>
      <dc:creator>VahidDM</dc:creator>
      <dc:date>2024-11-05T23:54:47Z</dc:date>
    </item>
    <item>
      <title>Re: Running Total with LASTNONBLANKVALUE</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Total-with-LASTNONBLANKVALUE/m-p/4271790#M169442</link>
      <description>&lt;P&gt;Hey there!&lt;/P&gt;&lt;P&gt;Here’s how you can achieve this in Power BI:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;1. Create the "Sales projected" Column:&lt;/STRONG&gt;&lt;BR /&gt;- Use the last non-blank sales value to fill in projected sales for future weeks.&lt;BR /&gt;- You can create a calculated column like this:&lt;/P&gt;&lt;P&gt;DAX&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Sales projected =
IF(
[Index] &amp;gt;= 0,
CALCULATE(
LASTNONBLANKVALUE('Table'[Sales], 'Table'[Sales]),
FILTER('Table', [Index] = 0)
),
[Sales]
)&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;- This will keep actual sales for past weeks and use the last available sales value as a projection for future weeks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;2. Create the "Running Total Sales" Column:&lt;/STRONG&gt;&lt;BR /&gt;- Now, calculate the running total, starting from the week with `Index = 0` and using the projected sales value.&lt;/P&gt;&lt;P&gt;DAX&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Running Total Sales =
CALCULATE(
SUM('Table'[Sales projected]),
FILTER(
ALL('Table'),
'Table'[Year-Week] &amp;lt;= EARLIER('Table'[Year-Week]) &amp;amp;&amp;amp; 'Table'[Index] &amp;gt;= 0
)
)&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;- This formula will accumulate the "Sales projected" values from the week where `Index = 0` onward.&lt;/P&gt;&lt;P&gt;These formulas should give you the result you’re looking for: the projected sales for future weeks and a running total starting from `Index = 0`.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please mark this as solutionif this helps! &lt;span class="lia-unicode-emoji" title=":smiling_face_with_smiling_eyes:"&gt;😊&lt;/span&gt;. Appreciate Kudos&lt;/P&gt;</description>
      <pubDate>Wed, 06 Nov 2024 04:50:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Total-with-LASTNONBLANKVALUE/m-p/4271790#M169442</guid>
      <dc:creator>FarhanJeelani</dc:creator>
      <dc:date>2024-11-06T04:50:34Z</dc:date>
    </item>
    <item>
      <title>Re: Running Total with LASTNONBLANKVALUE</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Total-with-LASTNONBLANKVALUE/m-p/4272532#M169484</link>
      <description>&lt;P&gt;THanks a lot! Is this approach possible without any calculated column? Just with a DAX measure&lt;/P&gt;</description>
      <pubDate>Wed, 06 Nov 2024 12:57:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Total-with-LASTNONBLANKVALUE/m-p/4272532#M169484</guid>
      <dc:creator>joshua1990</dc:creator>
      <dc:date>2024-11-06T12:57:17Z</dc:date>
    </item>
    <item>
      <title>Re: Running Total with LASTNONBLANKVALUE</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Total-with-LASTNONBLANKVALUE/m-p/4273040#M169506</link>
      <description>&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Nov 2024 21:02:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Total-with-LASTNONBLANKVALUE/m-p/4273040#M169506</guid>
      <dc:creator>ThxAlot</dc:creator>
      <dc:date>2024-11-06T21:02:35Z</dc:date>
    </item>
    <item>
      <title>Re: Running Total with LASTNONBLANKVALUE</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Total-with-LASTNONBLANKVALUE/m-p/4273792#M169549</link>
      <description>&lt;P&gt;&lt;img /&gt;&lt;BR /&gt;File :&amp;nbsp;&lt;A href="https://easyupload.io/4jimop" target="_blank" rel="noopener"&gt;https://easyupload.io/4jimop&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Nov 2024 09:58:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Total-with-LASTNONBLANKVALUE/m-p/4273792#M169549</guid>
      <dc:creator>SachinNandanwar</dc:creator>
      <dc:date>2024-11-07T09:58:13Z</dc:date>
    </item>
    <item>
      <title>Re: Running Total with LASTNONBLANKVALUE</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Total-with-LASTNONBLANKVALUE/m-p/4273844#M169551</link>
      <description>&lt;P&gt;&lt;STRONG&gt;Step 1: Create the "Sales projected" measure&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;This measure will take the last known sales value and continue using it for future weeks.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;DAX
Sales projected =
IF(
ISBLANK([Sales]),
LASTNONBLANKVALUE('Table'[Sales], [Sales]),
[Sales]
)&lt;/LI-CODE&gt;&lt;P&gt;Explanation:&lt;BR /&gt;- `LASTNONBLANKVALUE('Table'[Sales], [Sales])` finds the last non-blank sales value in your table.&lt;BR /&gt;- `IF(ISBLANK([Sales]), ..., [Sales])` checks if the sales value is blank; if it is, it uses the last known sales value; otherwise, it uses the actual sales value.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Step 2: Create the "Running Total Sales" measure with projected sales&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Now, you can create a running total that starts from the first row where `Index = 0` and includes the "Sales projected" measure for calculation.&lt;/P&gt;&lt;P&gt;DAX&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Running Total Sales =
VAR StartingIndex =
CALCULATE(
MIN('Table'[Index]),
'Table'[Index] &amp;gt;= 0
)
RETURN
CALCULATE(
SUMX(
FILTER(
'Table',
'Table'[Index] &amp;gt;= StartingIndex &amp;amp;&amp;amp;
'Table'[Index] &amp;lt;= EARLIER('Table'[Index])
),
[Sales projected]
)
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Explanation:&lt;/STRONG&gt;&lt;BR /&gt;- `StartingIndex` finds the first row where `Index &amp;gt;= 0`.&lt;BR /&gt;- `SUMX(FILTER(...), [Sales projected])` sums up the "Sales projected" values up to the current row, only starting from the defined `StartingIndex`.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;How It Works&lt;/STRONG&gt;&lt;BR /&gt;1. The "Sales projected" measure uses the last available sales value for blank entries in the `Sales` column.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;2. The "Running Total Sales" measure then calculates a cumulative total based on "Sales projected" from the point where `Index = 0`.&lt;/P&gt;&lt;P&gt;This approach should work effectively within your table visualization without requiring any calculated columns.&lt;/P&gt;</description>
      <pubDate>Thu, 07 Nov 2024 10:25:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Total-with-LASTNONBLANKVALUE/m-p/4273844#M169551</guid>
      <dc:creator>FarhanJeelani</dc:creator>
      <dc:date>2024-11-07T10:25:29Z</dc:date>
    </item>
    <item>
      <title>Re: Running Total with LASTNONBLANKVALUE</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Total-with-LASTNONBLANKVALUE/m-p/4277733#M169732</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="92006" data-lia-user-login="joshua1990" class="lia-mention lia-mention-user"&gt;joshua1990&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How is the situation now? If the problem has been solved, please&amp;nbsp;accept replies you find helpful to this question as solutions. This will help others with the same question find solutions faster.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If none of the above is the solution you want, please provide more details and sample data. Also, does "index=0" occur more than once?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;/P&gt;
&lt;P&gt;Mengmeng Li&lt;/P&gt;</description>
      <pubDate>Mon, 11 Nov 2024 07:14:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Total-with-LASTNONBLANKVALUE/m-p/4277733#M169732</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-11T07:14:44Z</dc:date>
    </item>
    <item>
      <title>Re: Running Total with LASTNONBLANKVALUE</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Total-with-LASTNONBLANKVALUE/m-p/4277789#M169736</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="92006" data-lia-user-login="joshua1990" class="lia-mention lia-mention-user"&gt;joshua1990&lt;/a&gt;&amp;nbsp;, Please accept my reply as a solution if it helps you&lt;span class="lia-unicode-emoji" title=":smiling_face_with_smiling_eyes:"&gt;😊&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 11 Nov 2024 07:42:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Total-with-LASTNONBLANKVALUE/m-p/4277789#M169736</guid>
      <dc:creator>FarhanJeelani</dc:creator>
      <dc:date>2024-11-11T07:42:53Z</dc:date>
    </item>
    <item>
      <title>Re: Running Total with LASTNONBLANKVALUE</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Total-with-LASTNONBLANKVALUE/m-p/4281229#M169899</link>
      <description>&lt;P&gt;Yes, absolutely! You can achieve this entirely with DAX measures, without the need for calculated columns. Here’s how you can set up both the "Sales Projected" and "Running Total Sales Projected" as&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Create the "Sales Projected" Measure&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Try this measure:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sales Projected =&lt;BR /&gt;VAR LastActualSales =&lt;BR /&gt;CALCULATE(&lt;BR /&gt;LASTNONBLANK('YourTable'[Sales], [Sales]),&lt;BR /&gt;FILTER('YourTable', 'YourTable'[Index] &amp;lt; 0)&lt;BR /&gt;)&lt;BR /&gt;RETURN&lt;BR /&gt;IF(&lt;BR /&gt;'YourTable'[Index] &amp;gt;= 0,&lt;BR /&gt;COALESCE(LastActualSales, 0),&lt;BR /&gt;[Sales]&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This measure will populate Sales Projected with the last non-blank sales value where Index is negative (historical sales), and it will carry this value forward to rows where Index is greater than or equal to 0.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Create the "Running Total Sales Projected" Measure&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Running Total Sales Projected =&lt;BR /&gt;VAR MaxIndex = MAX('YourTable'[Index])&lt;BR /&gt;RETURN&lt;BR /&gt;CALCULATE(&lt;BR /&gt;SUMX(&lt;BR /&gt;FILTER(&lt;BR /&gt;ALL('YourTable'),&lt;BR /&gt;'YourTable'[Index] &amp;lt;= MaxIndex&lt;BR /&gt;),&lt;BR /&gt;[Sales Projected]&lt;BR /&gt;)&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Sales Projected&lt;/STRONG&gt;: This measure dynamically uses the last non-blank sales value for rows where Index &amp;gt;= 0. It does not create a separate column but instead calculates the projected sales value directly as a measure.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Running Total Sales Projected&lt;/STRONG&gt;: This measure calculates a running total by summing up Sales Projected up to the current Index. Using ALL('YourTable') ensures the measure ignores row context, so it correctly accumulates projected sales over all rows up to the current one.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When you add these two measures to your table visualization, "Sales Projected" will display the projected sales values dynamically, and "Running Total Sales Projected" will calculate the cumulative total based on those projected values, all without creating additional columns.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Nov 2024 07:08:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Running-Total-with-LASTNONBLANKVALUE/m-p/4281229#M169899</guid>
      <dc:creator>123abc</dc:creator>
      <dc:date>2024-11-13T07:08:48Z</dc:date>
    </item>
  </channel>
</rss>

