<?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: cumulative sum by date and product in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/cumulative-sum-by-date-and-product/m-p/3749689#M146252</link>
    <description>&lt;P&gt;Anyone know how to solve missing categories in the results if a category does not have any values for a specified time period? Example: Product C does not have any amounts in Feb-23 so C will be excluded completely from the displayed results&lt;BR /&gt;&lt;BR /&gt;Source Data:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;BR /&gt;Result:&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;</description>
    <pubDate>Thu, 07 Mar 2024 21:39:12 GMT</pubDate>
    <dc:creator>ahp-sig</dc:creator>
    <dc:date>2024-03-07T21:39:12Z</dc:date>
    <item>
      <title>cumulative sum by date and product</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/cumulative-sum-by-date-and-product/m-p/1973888#M43427</link>
      <description>&lt;P&gt;hello, please help me&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i am trying to make cumulative sum (running sum) table for every day in year and by product, this is the example&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;date&lt;/TD&gt;&lt;TD&gt;product&lt;/TD&gt;&lt;TD&gt;value&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1-Jan-21&lt;/TD&gt;&lt;TD&gt;ayam&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1-Jan-21&lt;/TD&gt;&lt;TD&gt;bebek&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2-Jan-21&lt;/TD&gt;&lt;TD&gt;ayam&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2-Jan-21&lt;/TD&gt;&lt;TD&gt;bebek&lt;/TD&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;3-Jan-21&lt;/TD&gt;&lt;TD&gt;ayam&lt;/TD&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;3-Jan-21&lt;/TD&gt;&lt;TD&gt;bebek&lt;/TD&gt;&lt;TD&gt;6&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;i got on internet this formula&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;PRE&gt;running sum = CALCULATE( &lt;BR /&gt; SUM('Sheet1'[Value]), &lt;BR /&gt; FILTER(ALLSELECTED('Sheet1'), &lt;BR /&gt; 'Sheet1'[date] &amp;gt;= DATE(YEAR(MAX('Sheet1'[date])),1,1) &amp;amp;&amp;amp;&lt;BR /&gt; 'Sheet1'[date] &amp;lt;= MAX('Sheet1'[date])&lt;BR /&gt; ))&lt;/PRE&gt;&lt;DIV&gt;from that formula i got table like this&lt;/DIV&gt;&lt;DIV&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;date&lt;/TD&gt;&lt;TD&gt;product&lt;/TD&gt;&lt;TD&gt;value&lt;/TD&gt;&lt;TD&gt;cumulative sum&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1-Jan-21&lt;/TD&gt;&lt;TD&gt;ayam&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1-Jan-21&lt;/TD&gt;&lt;TD&gt;bebek&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2-Jan-21&lt;/TD&gt;&lt;TD&gt;ayam&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;10&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2-Jan-21&lt;/TD&gt;&lt;TD&gt;bebek&lt;/TD&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;TD&gt;10&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;3-Jan-21&lt;/TD&gt;&lt;TD&gt;ayam&lt;/TD&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;TD&gt;21&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;3-Jan-21&lt;/TD&gt;&lt;TD&gt;bebek&lt;/TD&gt;&lt;TD&gt;6&lt;/TD&gt;&lt;TD&gt;21&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i hope the result like this&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;date&lt;/TD&gt;&lt;TD&gt;product&lt;/TD&gt;&lt;TD&gt;value&lt;/TD&gt;&lt;TD&gt;cumulative sum&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1-Jan-21&lt;/TD&gt;&lt;TD&gt;ayam&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1-Jan-21&lt;/TD&gt;&lt;TD&gt;bebek&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2-Jan-21&lt;/TD&gt;&lt;TD&gt;ayam&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2-Jan-21&lt;/TD&gt;&lt;TD&gt;bebek&lt;/TD&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;TD&gt;6&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;3-Jan-21&lt;/TD&gt;&lt;TD&gt;ayam&lt;/TD&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;TD&gt;9&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;3-Jan-21&lt;/TD&gt;&lt;TD&gt;bebek&lt;/TD&gt;&lt;TD&gt;6&lt;/TD&gt;&lt;TD&gt;12&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;how to make table like this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks in advance&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 22 Jul 2021 17:23:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/cumulative-sum-by-date-and-product/m-p/1973888#M43427</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-07-22T17:23:04Z</dc:date>
    </item>
    <item>
      <title>Re: cumulative sum by date and product</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/cumulative-sum-by-date-and-product/m-p/1974107#M43428</link>
      <description>&lt;P&gt;Try this&amp;nbsp;Anonymous&lt;/LI-USER&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;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Cumulative Value = 
VAR varDate = SELECTEDVALUE(Data[Date])
VAR varProduct = SELECTEDVALUE(Data[Product])
RETURN
    CALCULATE(
        [Total Value],
        Data[Date] &amp;lt;= varDate
            &amp;amp;&amp;amp; Data[Product] = varProduct
    )&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;THe [Total Value] measure is just &lt;STRONG&gt;SUM(Data[Value)&amp;nbsp;&lt;/STRONG&gt;- I always use explicit measures in visuals, not dragging fields from the field pane.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Jul 2021 20:15:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/cumulative-sum-by-date-and-product/m-p/1974107#M43428</guid>
      <dc:creator>edhans</dc:creator>
      <dc:date>2021-07-22T20:15:02Z</dc:date>
    </item>
    <item>
      <title>Re: cumulative sum by date and product</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/cumulative-sum-by-date-and-product/m-p/1974394#M43434</link>
      <description>&lt;P&gt;Hi Edhans, thanks for your solution it's work&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":grinning_face:"&gt;😀&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;but if i want start from this year how to filter the formula&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i combine your formula with this formula&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;'Sheet1 (2)'[date] &amp;gt;= DATE(YEAR(MAX('Sheet1 (2)'[date])),1,1) &amp;amp;&amp;amp;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;'Sheet1 (2)'[date] &amp;lt;= MAX('Sheet1 (2)'[date])&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;and then i got error &lt;STRONG&gt;"A function 'MAX' has been used in a True/False expression that is used as a table filter expression. This is not allowed."&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;PRE&gt;&lt;SPAN&gt;_run sum = &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;var vardate = SELECTEDVALUE('Sheet1 (2)'[date])&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;var vartype = SELECTEDVALUE('Sheet1 (2)'[Type])&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;return&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;CALCULATE(&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; [sum value],&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; 'Sheet1 (2)'[date] &amp;lt;= vardate &amp;amp;&amp;amp;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; 'Sheet1 (2)'[Type] = vartype &amp;amp;&amp;amp;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; 'Sheet1 (2)'[date] &amp;gt;= DATE(YEAR(MAX('Sheet1 (2)'[date])),1,1) &amp;amp;&amp;amp;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; 'Sheet1 (2)'[date] &amp;lt;= MAX('Sheet1 (2)'[date])&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;how solve this problem?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;thanks in advance&lt;/SPAN&gt;&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 23 Jul 2021 00:54:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/cumulative-sum-by-date-and-product/m-p/1974394#M43434</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-07-23T00:54:35Z</dc:date>
    </item>
    <item>
      <title>Re: cumulative sum by date and product</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/cumulative-sum-by-date-and-product/m-p/1974495#M43438</link>
      <description>&lt;P&gt;This is actually very easy to do&amp;nbsp;&lt;EM&gt;if&lt;/EM&gt; you have a Date table. The predicate for Data[Date] removes the filter for the date.&lt;BR /&gt;&lt;BR /&gt;VALUES(Date[Year]) puts it back. So you see how I modified the data to have some 2020 data for Ayam, but it resets Jan 1 for the running total. You'll also notice I replaced the Data[Date] field in the measure with 'Date'[Date] - again, using the DIM Date table.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Cumulative Value = 
VAR varDate = SELECTEDVALUE('Date'[Date])
VAR varProduct = SELECTEDVALUE(Data[Product])
RETURN
    CALCULATE(
        [Total Value],
        'Date'[Date] &amp;lt;= varDate,
        Data[Product] = varProduct,
        VALUES('Date'[Year])
    )&lt;/LI-CODE&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;My table is out of sort order but it doesn't matter. You can sort by date and it still works.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is the Power Query code for a VERY simplistic date table. It just has the Date and Year.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;let
    Source = {Number.From(#date(2020,1,1))..Number.From(#date(2021,12,31))},
    #"Converted to Table" = Table.FromList(Source, Splitter.SplitByNothing(), {"Date"}, null, ExtraValues.Error),
    #"Changed Type" = Table.TransformColumnTypes(#"Converted to Table",{{"Date", type date}}),
    #"Inserted Year" = Table.AddColumn(#"Changed Type", "Year", each Date.Year([Date]), Int64.Type)
in
    #"Inserted Year"&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How to use M code provided in a blank query:&lt;BR /&gt;1) In Power Query, select New Source, then Blank Query&lt;BR /&gt;2) On the Home ribbon, select "Advanced Editor" button&lt;BR /&gt;3) Remove everything you see, then paste the M code I've given you in that box.&lt;BR /&gt;4) Press Done&lt;BR /&gt;5) &lt;A href="https://community.powerbi.com/t5/Community-Blog/Utilizing-M-Code-Samples-Given-as-Solutions-in-Power-Query/ba-p/1147514" target="_blank" rel="noopener"&gt;See this article if you need help using this M code in your model.&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Now, Name that Date, then when back in DAX, right-click and Mark as Date Table, selecting the Date column.&lt;BR /&gt;Finally, set your model to look like this. You'll notice I hid the Date in the data table. You want to use the Date from your Date table - best practice.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;I am 100% sure this can be done without a date table, but I am also 100% sure your DAX will be more complex, as you are discovering. Using a proper Star Schema with Dimension and Fact tables (Date is a dimension, your sales data or whatever it is is the FACT table) makes the DAX much easier.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Jul 2021 02:24:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/cumulative-sum-by-date-and-product/m-p/1974495#M43438</guid>
      <dc:creator>edhans</dc:creator>
      <dc:date>2021-07-23T02:24:22Z</dc:date>
    </item>
    <item>
      <title>Re: cumulative sum by date and product</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/cumulative-sum-by-date-and-product/m-p/2529691#M70891</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="24715" data-lia-user-login="edhans" class="lia-mention lia-mention-user"&gt;edhans&lt;/a&gt;&amp;nbsp;I understand CALCULATE changes the context, but in my case I need the Cumulative values considering the context resulted from the visual/page filters. How can I do it? Thanks in advance!&lt;/P&gt;</description>
      <pubDate>Fri, 20 May 2022 14:18:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/cumulative-sum-by-date-and-product/m-p/2529691#M70891</guid>
      <dc:creator>gomesan1</dc:creator>
      <dc:date>2022-05-20T14:18:32Z</dc:date>
    </item>
    <item>
      <title>Re: cumulative sum by date and product</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/cumulative-sum-by-date-and-product/m-p/2695309#M81301</link>
      <description>&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;P&gt;Hello&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="24715" data-lia-user-login="edhans" class="lia-mention lia-mention-user"&gt;edhans&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I have a table containing, Date, category1 (Fund), category 2(Board), category 3(IEO), net balance&amp;nbsp;&lt;BR /&gt;I need a cumulative sum of the net balance for all 3 categories with a month filter in it :&lt;/P&gt;&lt;img /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have used DAX for the cumulative sum for the month which is working using :&lt;BR /&gt;Cumm actual =&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;EM&gt;Var Maxd = MAX(new_shptransactionscurrentyears[new_postingdate])&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;Return&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp;CALCULATE(SUM(new_shptransactionscurrentyears[new_netbalance]),ALLSELECTED(new_shptransactionscurrentyears) ,(new_shptransactionscurrentyears[new_postingdate] &amp;lt;= Maxd))&lt;BR /&gt;&lt;BR /&gt;&amp;amp; Tried&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;EM&gt;CALCULATE(SUM(new_shptransactionscurrentyears[new_netbalance]),filter(allselected(new_shptransactionscurrentyears[new_postingdate]),new_shptransactionscurrentyears[new_postingdate] &amp;lt;=max(new_shptransactionscurrentyears[new_postingdate])))&lt;/EM&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&lt;BR /&gt;This worked fine for the month table however doesn't work on the table with categories in it or with filter on&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Thank you &amp;amp; I really appreciate your help&amp;nbsp;&lt;BR /&gt;#Need Help&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI&gt;Labels:&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;UL&gt;&lt;LI&gt;&lt;A href="https://community.powerbi.com/t5/forums/filteredbylabelpage/board-id/power-bi-designer/label-name/need%20help" target="_blank" rel="noopener"&gt;Need Help&lt;/A&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 11 Aug 2022 13:28:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/cumulative-sum-by-date-and-product/m-p/2695309#M81301</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-08-11T13:28:06Z</dc:date>
    </item>
    <item>
      <title>Re: cumulative sum by date and product</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/cumulative-sum-by-date-and-product/m-p/3077239#M107039</link>
      <description>&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Hi Community my friend&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'd like to need your help to make Table in BI to accumulate % same as the right table of excel below.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Feb 2023 08:30:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/cumulative-sum-by-date-and-product/m-p/3077239#M107039</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-02-13T08:30:39Z</dc:date>
    </item>
    <item>
      <title>Re: cumulative sum by date and product</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/cumulative-sum-by-date-and-product/m-p/3749689#M146252</link>
      <description>&lt;P&gt;Anyone know how to solve missing categories in the results if a category does not have any values for a specified time period? Example: Product C does not have any amounts in Feb-23 so C will be excluded completely from the displayed results&lt;BR /&gt;&lt;BR /&gt;Source Data:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;BR /&gt;Result:&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;</description>
      <pubDate>Thu, 07 Mar 2024 21:39:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/cumulative-sum-by-date-and-product/m-p/3749689#M146252</guid>
      <dc:creator>ahp-sig</dc:creator>
      <dc:date>2024-03-07T21:39:12Z</dc:date>
    </item>
    <item>
      <title>Re: cumulative sum by date and product</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/cumulative-sum-by-date-and-product/m-p/4119768#M163564</link>
      <description>&lt;P&gt;Thank you so much! Your solution worked in one of my dataset but when I wanna apply it into another dataset, the measure always returns the exact same value of the current date value, instead of the cumulative amounts for all previous dates I expected.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is the measure I used and the line &amp;amp; bar chart to demonstrate the problem (you can see the line is not for cumulated values), can you help take a look at anything wrong might go wrong here? Thanks!&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&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;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Aug 2024 03:21:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/cumulative-sum-by-date-and-product/m-p/4119768#M163564</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-08-27T03:21:45Z</dc:date>
    </item>
  </channel>
</rss>

