<?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: Sum values until the first maximum value in another column per each category in another column in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Sum-values-until-the-first-maximum-value-in-another-column-per/m-p/1692213#M34801</link>
    <description>&lt;P&gt;Amedeo you were right! I was missing the name of the measure!&lt;/P&gt;&lt;P&gt;I compared the result with the one I produced earlier and all matches but I will use yours as you suggested as for sure is more correct.&lt;/P&gt;&lt;P&gt;Again many thanks, not only for the solution but also because I learned a lot!&lt;/P&gt;&lt;P&gt;Kudos for you Amedeo &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; Have a great weekend&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 26 Feb 2021 13:19:50 GMT</pubDate>
    <dc:creator>Ecan20</dc:creator>
    <dc:date>2021-02-26T13:19:50Z</dc:date>
    <item>
      <title>Sum values until the first maximum value in another column per each category in another column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Sum-values-until-the-first-maximum-value-in-another-column-per/m-p/1689102#M34713</link>
      <description>&lt;P&gt;Hello DAX experts,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I have a dataset like the table below. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I am looking for a DAX formula to return the sum of the values in DAY column until the values in DEPTH column reach the first maximum value, per each category listed in JOB column.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;The desired result for job A for example would be 9 days = sum of days to reach the maximum DEPTH (500 in this case). &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;The job A takes 13 days in total, but I only want the days until the maximum depth is reached.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks to anyone that will try to help!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;JOB&lt;/TD&gt;&lt;TD&gt;DAY&lt;/TD&gt;&lt;TD&gt;DEPTH&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;100&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;150&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;200&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;300&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;300&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;300&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;400&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;400&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;500&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;500&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;500&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;500&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;500&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;50&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;50&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;100&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;200&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;300&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;350&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;400&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;550&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;550&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;550&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;550&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;550&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description>
      <pubDate>Thu, 25 Feb 2021 10:01:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Sum-values-until-the-first-maximum-value-in-another-column-per/m-p/1689102#M34713</guid>
      <dc:creator>Ecan20</dc:creator>
      <dc:date>2021-02-25T10:01:29Z</dc:date>
    </item>
    <item>
      <title>Re: Sum values until the first maximum value in another column per each category in another column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Sum-values-until-the-first-maximum-value-in-another-column-per/m-p/1689639#M34715</link>
      <description>&lt;P&gt;This task does not have a solution since you have not stated how values are ordered. Without a column that tells you the order of values, the description is meaningless.&lt;/P&gt;</description>
      <pubDate>Thu, 25 Feb 2021 12:40:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Sum-values-until-the-first-maximum-value-in-another-column-per/m-p/1689639#M34715</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-02-25T12:40:16Z</dc:date>
    </item>
    <item>
      <title>Re: Sum values until the first maximum value in another column per each category in another column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Sum-values-until-the-first-maximum-value-in-another-column-per/m-p/1689655#M34716</link>
      <description>&lt;P&gt;Hi daxer, thanks for the hint. But forgive me, I am a beginner and I don't understand what you mean by "the order of the values". Which values? What would you suggest me doing? Thanks!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Feb 2021 12:49:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Sum-values-until-the-first-maximum-value-in-another-column-per/m-p/1689655#M34716</guid>
      <dc:creator>Ecan20</dc:creator>
      <dc:date>2021-02-25T12:49:19Z</dc:date>
    </item>
    <item>
      <title>Re: Sum values until the first maximum value in another column per each category in another column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Sum-values-until-the-first-maximum-value-in-another-column-per/m-p/1690601#M34761</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;this will return 9 for all the rows in your table (I don't know if that's the output you wanted - if it's not, please provide a demo file and a detailed explanation of what you would like the measure to compute and I'll try to fix it):&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;Measure :=

VAR _MaxDepth =
	CALCULATE (
		MAX ( Table[Depth] ),
		REMOVEFILTERS ( Table[Depth] )
	)

VAR _Result = 
	CALCULATE (
		SUM ( Table[Day] ),
		Table[Depth] &amp;lt; _MaxDepth
	)

RETURN
_Result&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;Please let me know if this works &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Feb 2021 22:29:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Sum-values-until-the-first-maximum-value-in-another-column-per/m-p/1690601#M34761</guid>
      <dc:creator>AmedeoM</dc:creator>
      <dc:date>2021-02-25T22:29:53Z</dc:date>
    </item>
    <item>
      <title>Re: Sum values until the first maximum value in another column per each category in another column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Sum-values-until-the-first-maximum-value-in-another-column-per/m-p/1690723#M34767</link>
      <description>&lt;P&gt;DAX does not have an intrinsic notion of order. All tables in the model are unordered, just like tables in SQL. So, in order to calculate something that resembles "running totals," you have to have a column that orders rows in the table. Otherwise, the result of aggregation will be indetermined/random.&lt;/P&gt;</description>
      <pubDate>Fri, 26 Feb 2021 00:30:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Sum-values-until-the-first-maximum-value-in-another-column-per/m-p/1690723#M34767</guid>
      <dc:creator>daxer-almighty</dc:creator>
      <dc:date>2021-02-26T00:30:04Z</dc:date>
    </item>
    <item>
      <title>Re: Sum values until the first maximum value in another column per each category in another column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Sum-values-until-the-first-maximum-value-in-another-column-per/m-p/1691953#M34791</link>
      <description>&lt;P&gt;Amedeo,&amp;nbsp;&lt;/P&gt;&lt;P&gt;I modified it a bit and I got what I needed. Instead of the single days (second column) I used the cumulative days as input.&lt;/P&gt;&lt;P&gt;This formula returned the amount of days required to reach the final depth&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;VAR_RESULT = &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;CALCULATE (&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;MIN (Table[DAY]),FILTER(Table, Table[DEPTH] = (MAX(Table[DEPTH]))))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Many thanks for taking the time to help, much appreciated.&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Regards&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Elena&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 26 Feb 2021 11:10:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Sum-values-until-the-first-maximum-value-in-another-column-per/m-p/1691953#M34791</guid>
      <dc:creator>Ecan20</dc:creator>
      <dc:date>2021-02-26T11:10:34Z</dc:date>
    </item>
    <item>
      <title>Re: Sum values until the first maximum value in another column per each category in another column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Sum-values-until-the-first-maximum-value-in-another-column-per/m-p/1692012#M34794</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="273003" data-lia-user-login="Ecan20" class="lia-mention lia-mention-user"&gt;Ecan20&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;happy to know that it helped &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;Just be aware that usually passing a whole table as a filter to CALCULATE is not a good idea because it could negatively affect performance (and sometimes also return unpredictable results as well). Perhaps it would be better if you used:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;KEEPFILTERS ( Table[DEPTH] = MAX ( Table[DEPTH] ) ) &lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;as a filter, insead.&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;Amedeo&lt;/P&gt;</description>
      <pubDate>Fri, 26 Feb 2021 11:30:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Sum-values-until-the-first-maximum-value-in-another-column-per/m-p/1692012#M34794</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-02-26T11:30:12Z</dc:date>
    </item>
    <item>
      <title>Re: Sum values until the first maximum value in another column per each category in another column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Sum-values-until-the-first-maximum-value-in-another-column-per/m-p/1692043#M34795</link>
      <description>&lt;P&gt;Amedeo,&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks for this, I tried it but I am getting this error "A function MAX has been used in a True/False expression that is used as a table filter expression. This is not allowed"... any idea what I may be doing incorrectly?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Feb 2021 11:40:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Sum-values-until-the-first-maximum-value-in-another-column-per/m-p/1692043#M34795</guid>
      <dc:creator>Ecan20</dc:creator>
      <dc:date>2021-02-26T11:40:08Z</dc:date>
    </item>
    <item>
      <title>Re: Sum values until the first maximum value in another column per each category in another column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Sum-values-until-the-first-maximum-value-in-another-column-per/m-p/1692052#M34796</link>
      <description>&lt;P&gt;Yes, sorry, I didn't write the code explicitly because I assumed you had stored the value in a variable anyway. Please try with the following code:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;Measure :=

VAR _MaxDepth =
	MAX ( Table[Depth] )

VAR _Result = 
	CALCULATE (
		MIN ( Table[DAY] ),
		KEEPFILTERS ( Table[DEPTH] = _MaxDepth ) 
	)

RETURN
_Result&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;And let me know if it works &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Feb 2021 11:46:09 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Sum-values-until-the-first-maximum-value-in-another-column-per/m-p/1692052#M34796</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-02-26T11:46:09Z</dc:date>
    </item>
    <item>
      <title>Re: Sum values until the first maximum value in another column per each category in another column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Sum-values-until-the-first-maximum-value-in-another-column-per/m-p/1692086#M34798</link>
      <description>&lt;P&gt;Amedeo,&lt;/P&gt;&lt;P&gt;I apologize for my lack of knowledge here, and please do forgive me the stupid question:&lt;/P&gt;&lt;P&gt;is this a single Measure or should I make to separate for Max Depth and Result?&lt;/P&gt;&lt;P&gt;If I make 2 measures I get the error&amp;nbsp;&lt;SPAN&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;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;If I combine them in 1 measure I get this error: "the syntax for 'VAR' is incorrect (...)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Feb 2021 12:02:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Sum-values-until-the-first-maximum-value-in-another-column-per/m-p/1692086#M34798</guid>
      <dc:creator>Ecan20</dc:creator>
      <dc:date>2021-02-26T12:02:46Z</dc:date>
    </item>
    <item>
      <title>Re: Sum values until the first maximum value in another column per each category in another column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Sum-values-until-the-first-maximum-value-in-another-column-per/m-p/1692097#M34799</link>
      <description>&lt;P&gt;No need to apologize&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="273003" data-lia-user-login="Ecan20" class="lia-mention lia-mention-user"&gt;Ecan20&lt;/a&gt; &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Yes, that would be a single measure, in which you can define multiple variables and reference them in the same measure. I assumed you were using a fairly recent version of Power BI Desktop/Excel, in which you can define variables.&lt;BR /&gt;&lt;BR /&gt;Are you using a recent version of Power BI Desktop/Excel/SQL Server Analysis Services?&lt;BR /&gt;&lt;BR /&gt;I don't want to ask a stupid question either, but have you forgot to provide a name for your measure? That's the first thing I can think of.&lt;BR /&gt;&lt;BR /&gt;If you miss that, you'll get an error:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;With measure name instead:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Feb 2021 12:11:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Sum-values-until-the-first-maximum-value-in-another-column-per/m-p/1692097#M34799</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-02-26T12:11:08Z</dc:date>
    </item>
    <item>
      <title>Re: Sum values until the first maximum value in another column per each category in another column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Sum-values-until-the-first-maximum-value-in-another-column-per/m-p/1692213#M34801</link>
      <description>&lt;P&gt;Amedeo you were right! I was missing the name of the measure!&lt;/P&gt;&lt;P&gt;I compared the result with the one I produced earlier and all matches but I will use yours as you suggested as for sure is more correct.&lt;/P&gt;&lt;P&gt;Again many thanks, not only for the solution but also because I learned a lot!&lt;/P&gt;&lt;P&gt;Kudos for you Amedeo &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; Have a great weekend&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Feb 2021 13:19:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Sum-values-until-the-first-maximum-value-in-another-column-per/m-p/1692213#M34801</guid>
      <dc:creator>Ecan20</dc:creator>
      <dc:date>2021-02-26T13:19:50Z</dc:date>
    </item>
  </channel>
</rss>

