<?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: Help with Cumulative Max Calculation in Power BI in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-with-Cumulative-Max-Calculation-in-Power-BI/m-p/4674161#M179010</link>
    <description>&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1267313" data-lia-user-login="CreativeEnergy" class="lia-mention lia-mention-user"&gt;CreativeEnergy&lt;/a&gt;,&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;Just following up to see if the solution provided was helpful in resolving your issue. Please feel free to let us know if you need any further assistance.&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;If the response addressed your query, kindly mark it as &lt;SPAN&gt;Accepted Solution&lt;/SPAN&gt; and click &lt;SPAN&gt;Yes&lt;/SPAN&gt; if you found it helpful — this will benefit others in the community as well.&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;Best regards,&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;Prasanna Kumar&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 30 Apr 2025 07:49:05 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2025-04-30T07:49:05Z</dc:date>
    <item>
      <title>Help with Cumulative Max Calculation in Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-with-Cumulative-Max-Calculation-in-Power-BI/m-p/4671404#M178935</link>
      <description>&lt;P class=""&gt;Hi all,&lt;/P&gt;&lt;P class=""&gt;I’m working on a Power BI report where I have two values (Planning and Prognose) with fairly complex measures behind them. These values are spread across a series of weeks and companies. For each week and company combination, I want to calculate the maximum value between the two (using the MAX function), which works well so far. However, now I need to calculate the cumulative total based on the result of that MAX function, so it "grows" as the weeks progress.&lt;/P&gt;&lt;P class=""&gt;For example, my data looks like this:&lt;/P&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;BR /&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Company&lt;/TD&gt;&lt;TD&gt;Week&lt;/TD&gt;&lt;TD&gt;Planning&lt;/TD&gt;&lt;TD&gt;Prognosis&lt;/TD&gt;&lt;TD&gt;Max&lt;/TD&gt;&lt;TD&gt;Cumulative&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Company 1&lt;/TD&gt;&lt;TD&gt;2024w01&lt;/TD&gt;&lt;TD&gt;20&lt;/TD&gt;&lt;TD&gt;30&lt;/TD&gt;&lt;TD&gt;30&lt;/TD&gt;&lt;TD&gt;30&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Company 1&lt;/TD&gt;&lt;TD&gt;2024w02&lt;/TD&gt;&lt;TD&gt;40&lt;/TD&gt;&lt;TD&gt;20&lt;/TD&gt;&lt;TD&gt;40&lt;/TD&gt;&lt;TD&gt;70&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Company 1&lt;/TD&gt;&lt;TD&gt;2024w03&lt;/TD&gt;&lt;TD&gt;40&lt;/TD&gt;&lt;TD&gt;50&lt;/TD&gt;&lt;TD&gt;50&lt;/TD&gt;&lt;TD&gt;120&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Company 2&lt;/TD&gt;&lt;TD&gt;2024w01&lt;/TD&gt;&lt;TD&gt;30&lt;/TD&gt;&lt;TD&gt;20&lt;/TD&gt;&lt;TD&gt;30&lt;/TD&gt;&lt;TD&gt;30&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Company 2&lt;/TD&gt;&lt;TD&gt;2024w02&lt;/TD&gt;&lt;TD&gt;60&lt;/TD&gt;&lt;TD&gt;30&lt;/TD&gt;&lt;TD&gt;60&lt;/TD&gt;&lt;TD&gt;90&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Company 2&lt;/TD&gt;&lt;TD&gt;2024w03&lt;/TD&gt;&lt;TD&gt;40&lt;/TD&gt;&lt;TD&gt;50&lt;/TD&gt;&lt;TD&gt;50&lt;/TD&gt;&lt;TD&gt;140&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Company 3&lt;/TD&gt;&lt;TD&gt;2024w01&lt;/TD&gt;&lt;TD&gt;90&lt;/TD&gt;&lt;TD&gt;20&lt;/TD&gt;&lt;TD&gt;90&lt;/TD&gt;&lt;TD&gt;90&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Company 3&lt;/TD&gt;&lt;TD&gt;2024w02&lt;/TD&gt;&lt;TD&gt;60&lt;/TD&gt;&lt;TD&gt;50&lt;/TD&gt;&lt;TD&gt;60&lt;/TD&gt;&lt;TD&gt;150&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Company 3&lt;/TD&gt;&lt;TD&gt;2024w03&lt;/TD&gt;&lt;TD&gt;20&lt;/TD&gt;&lt;TD&gt;70&lt;/TD&gt;&lt;TD&gt;70&lt;/TD&gt;&lt;TD&gt;220&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P class=""&gt;The challenge I’m facing is how to calculate the &lt;STRONG&gt;Cumulative&lt;/STRONG&gt; column. For each company, I want the cumulative sum to add up the maximum value for each week.&lt;/P&gt;&lt;P class=""&gt;Here’s the approach I’ve tried:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;P class=""&gt;I created a measure to get the max value for each week and company, which works as expected.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P class=""&gt;Then, I tried using a &lt;STRONG&gt;DAX formula&lt;/STRONG&gt; to accumulate the max values, but I’m running into issues where the cumulative sum doesn’t update correctly across different companies.&lt;/P&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P class=""&gt;Can anyone help me with the right DAX formula for this cumulative calculation?&lt;/P&gt;&lt;P class=""&gt;Thanks in advance!&lt;/P&gt;</description>
      <pubDate>Mon, 28 Apr 2025 15:31:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-with-Cumulative-Max-Calculation-in-Power-BI/m-p/4671404#M178935</guid>
      <dc:creator>CreativeEnergy</dc:creator>
      <dc:date>2025-04-28T15:31:48Z</dc:date>
    </item>
    <item>
      <title>Re: Help with Cumulative Max Calculation in Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-with-Cumulative-Max-Calculation-in-Power-BI/m-p/4673586#M178985</link>
      <description>&lt;P&gt;assuming:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;You have a Date or Week dimension (which you &lt;STRONG&gt;should&lt;/STRONG&gt; if you want proper time intelligence).&lt;/LI&gt;
&lt;LI&gt;Your data table is called Data.&lt;/LI&gt;
&lt;LI&gt;Week is a text column like "2024w01", so we need to sort it properly.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;STRONG&gt;Step 1: Create a calculated column or measure for the row-wise maximum:&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;If you're working with measures:&lt;/P&gt;
&lt;P&gt;MaxValue = MAX([Planning], [Prognosis])&lt;/P&gt;
&lt;P&gt;If you're working in the data table and this can be a calculated column:&lt;/P&gt;
&lt;P&gt;MaxValue = MAXX({[Planning], [Prognosis]}, [Value])&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Step 2: Create a Cumulative Max measure:&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;To get a cumulative total of MaxValue &lt;STRONG&gt;per company&lt;/STRONG&gt;, sorted by week:&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Option A: If Week is a sortable column (like numeric week or proper date):&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;CumulativeMax =&lt;/P&gt;
&lt;P&gt;VAR CurrentWeek = SELECTEDVALUE('Data'[Week])&lt;/P&gt;
&lt;P&gt;RETURN&lt;/P&gt;
&lt;P&gt;CALCULATE(&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; SUMX(&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FILTER(&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ALL('Data'),&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Data'[Company] = SELECTEDVALUE('Data'[Company]) &amp;amp;&amp;amp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Data'[Week] &amp;lt;= CurrentWeek&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ),&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MAX([Planning], [Prognosis])&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; )&lt;/P&gt;
&lt;P&gt;)&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Option B: If Week is a text field like 2024w01 and not sorted properly:&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;You’ll need to create a &lt;STRONG&gt;sortable column&lt;/STRONG&gt; (e.g., "202401" as integer) for the cumulative logic to work properly. Add a column:&lt;/P&gt;
&lt;P&gt;SortWeek =&lt;/P&gt;
&lt;P&gt;VAR Year = LEFT('Data'[Week], 4)&lt;/P&gt;
&lt;P&gt;VAR WeekNum = RIGHT('Data'[Week], 2)&lt;/P&gt;
&lt;P&gt;RETURN VALUE(Year &amp;amp; WeekNum)&lt;/P&gt;
&lt;P&gt;Then sort your Week column by SortWeek.&lt;/P&gt;
&lt;P&gt;Now update the CumulativeMax measure:&lt;/P&gt;
&lt;P&gt;DAX&lt;/P&gt;
&lt;P&gt;CopyEdit&lt;/P&gt;
&lt;P&gt;CumulativeMax =&lt;/P&gt;
&lt;P&gt;VAR CurrentSortWeek = SELECTEDVALUE('Data'[SortWeek])&lt;/P&gt;
&lt;P&gt;RETURN&lt;/P&gt;
&lt;P&gt;CALCULATE(&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; SUMX(&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FILTER(&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ALL('Data'),&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Data'[Company] = SELECTEDVALUE('Data'[Company]) &amp;amp;&amp;amp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Data'[SortWeek] &amp;lt;= CurrentSortWeek&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ),&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MAX([Planning], [Prognosis])&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; )&lt;/P&gt;
&lt;P&gt;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Apr 2025 23:05:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-with-Cumulative-Max-Calculation-in-Power-BI/m-p/4673586#M178985</guid>
      <dc:creator>Shravan133</dc:creator>
      <dc:date>2025-04-29T23:05:35Z</dc:date>
    </item>
    <item>
      <title>Re: Help with Cumulative Max Calculation in Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-with-Cumulative-Max-Calculation-in-Power-BI/m-p/4674161#M179010</link>
      <description>&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1267313" data-lia-user-login="CreativeEnergy" class="lia-mention lia-mention-user"&gt;CreativeEnergy&lt;/a&gt;,&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;Just following up to see if the solution provided was helpful in resolving your issue. Please feel free to let us know if you need any further assistance.&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;If the response addressed your query, kindly mark it as &lt;SPAN&gt;Accepted Solution&lt;/SPAN&gt; and click &lt;SPAN&gt;Yes&lt;/SPAN&gt; if you found it helpful — this will benefit others in the community as well.&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;Best regards,&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;Prasanna Kumar&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Apr 2025 07:49:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-with-Cumulative-Max-Calculation-in-Power-BI/m-p/4674161#M179010</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-04-30T07:49:05Z</dc:date>
    </item>
    <item>
      <title>Re: Help with Cumulative Max Calculation in Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-with-Cumulative-Max-Calculation-in-Power-BI/m-p/4679344#M179228</link>
      <description>&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1267313" data-lia-user-login="CreativeEnergy" class="lia-mention lia-mention-user"&gt;CreativeEnergy&lt;/a&gt;,&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;We wanted to kindly check in to see if everything is working as expected after trying the suggested solution. If there’s anything else we can assist with, please don’t hesitate to ask.&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;If the issue is resolved, we’d appreciate it if you could mark the helpful reply as &lt;SPAN&gt;Accepted Solution&lt;/SPAN&gt; — it helps others who might face a similar issue.&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;Warm regards,&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;Prasanna Kumar&lt;/P&gt;</description>
      <pubDate>Mon, 05 May 2025 05:24:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-with-Cumulative-Max-Calculation-in-Power-BI/m-p/4679344#M179228</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-05-05T05:24:31Z</dc:date>
    </item>
    <item>
      <title>Re: Help with Cumulative Max Calculation in Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-with-Cumulative-Max-Calculation-in-Power-BI/m-p/4679406#M179231</link>
      <description>&lt;P&gt;Thank you for your response and excuse me for my late reply. I've tried this, but it seems that my Prognosis measure isn't working in the context unfortunately. Therefore, I have decided to rework the data model in a way that better fits this purpose. I assume it will work from there, but didn't have the time to fix that yet.&lt;/P&gt;</description>
      <pubDate>Mon, 05 May 2025 05:47:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-with-Cumulative-Max-Calculation-in-Power-BI/m-p/4679406#M179231</guid>
      <dc:creator>CreativeEnergy</dc:creator>
      <dc:date>2025-05-05T05:47:57Z</dc:date>
    </item>
    <item>
      <title>Re: Help with Cumulative Max Calculation in Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-with-Cumulative-Max-Calculation-in-Power-BI/m-p/4682678#M179347</link>
      <description>&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1267313" data-lia-user-login="CreativeEnergy" class="lia-mention lia-mention-user"&gt;CreativeEnergy&lt;/a&gt;,&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;Just a gentle reminder — has your issue been resolved? If so, we’d be grateful if you could mark the solution that worked as &lt;SPAN&gt;Accepted Solution&lt;/SPAN&gt;, or feel free to share your own if you found a different fix.&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;This not only closes the loop on your query but also helps others in the community solve similar issues faster.&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;Thank you for your time and feedback!&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;Best,&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;Prasanna Kumar&lt;/P&gt;</description>
      <pubDate>Wed, 07 May 2025 06:53:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-with-Cumulative-Max-Calculation-in-Power-BI/m-p/4682678#M179347</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-05-07T06:53:08Z</dc:date>
    </item>
  </channel>
</rss>

