<?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: Last N weeks sales for same period last year in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Last-N-weeks-sales-for-same-period-last-year/m-p/3881107#M151498</link>
    <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="734205" data-lia-user-login="Jng_06" class="lia-mention lia-mention-user"&gt;Jng_06&lt;/a&gt; , Make sure the table also have number along with text so that you can get last few weeks as number &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Last N Week Today = &lt;BR /&gt;var _min = today()// Or add to get monday -WEEKDAY(today() ,2) -6 //Monday week start&lt;BR /&gt;var _max = _min +6 * &lt;EM&gt;SELECTEDVALUE('Last N Weeks'[Last N Weeks ])&lt;/EM&gt;&lt;BR /&gt;return CALCULATE([Net], FILTER('Date','Date'[Date] &amp;gt;=_min &amp;amp;&amp;amp; 'Date'[Date] &amp;lt;= _max))&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Last N Week Today Last year = &lt;BR /&gt;var _min = date(year(today())-1, Month(Today()) , day(Today() ) ) // Or add to get monday -WEEKDAY(today() ,2) -6 //Monday week start&lt;BR /&gt;var _max = _min +6 * &lt;EM&gt;SELECTEDVALUE('Last N Weeks'[Last N Weeks ])&lt;/EM&gt;&lt;BR /&gt;return CALCULATE([Net], FILTER('Date','Date'[Date] &amp;gt;=_min &amp;amp;&amp;amp; 'Date'[Date] &amp;lt;= _max))&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;WOW with help from selected dates&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Power BI — Week on Week and WTD &lt;BR /&gt;&lt;A href="https://medium.com/@amitchandak.1978/power-bi-wtd-questions-time-intelligence-4-5-98c30fab69d3" target="_blank"&gt;https://medium.com/@amitchandak.1978/power-bi-wtd-questions-time-intelligence-4-5-98c30fab69d3&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://community.powerbi.com/t5/Community-Blog/Week-Is-Not-So-Weak-WTD-Last-WTD-and-This-Week-vs-Last-Week/ba-p/1051123" target="_blank"&gt;https://community.powerbi.com/t5/Community-Blog/Week-Is-Not-So-Weak-WTD-Last-WTD-and-This-Week-vs-Last-Week/ba-p/1051123&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://www.youtube.com/watch?v=pnAesWxYgJ8" target="_blank"&gt;https://www.youtube.com/watch?v=pnAesWxYgJ8&lt;/A&gt;&lt;BR /&gt;Time Intelligence, Part of learn Power BI &lt;A href="https://youtu.be/cN8AO3_vmlY?t=27510" target="_blank"&gt;https://youtu.be/cN8AO3_vmlY?t=27510&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 01 May 2024 03:01:56 GMT</pubDate>
    <dc:creator>amitchandak</dc:creator>
    <dc:date>2024-05-01T03:01:56Z</dc:date>
    <item>
      <title>Last N weeks sales for same period last year</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Last-N-weeks-sales-for-same-period-last-year/m-p/3881084#M151497</link>
      <description>&lt;P&gt;Hello.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm trying to calculate year over year for last N weeks.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a helper table that create the group of the last N weeks so I can use it for slicers and matrix table.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have created a dax calculating Last N weeks as follow:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;EM&gt;Sum Last N Weeks Sales =&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;var SelectedWeekOptionsValue = SELECTEDVALUE('Last N Weeks'[Last N Weeks ])&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;var CurrentYearWeek = max('Fiscal Calendar'[week from today])&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;return CALCULATE(SUM('Sales Line'[Amt]), 'Fiscal Calendar '[week from today] &amp;gt;0 , &lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; 'Fiscal Calendar'[week from today]&amp;lt;=SelectedWeekOptionsValue&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; &amp;amp;&amp;amp; 'Fiscal Calendar '[week from today] &amp;gt; SelectedWeekOptionsValue - CurrentYearWeek)&lt;/EM&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However when I try to use the same logic for the same period last year, the dax is not calculating the previous correct correctly.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;EM&gt;Sum Last N Weeks Sales Last Year =&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;VAR SelectedWeekOptionsValue = SELECTEDVALUE('Last N Weeks'[Last N Weeks ])&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;VAR CurrentYearWeek = MAX('Fiscal Calendar'[week from today])&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;VAR LastYearWeek = CALCULATE(MAX('Fiscal Calendar'[week from today]), SAMEPERIODLASTYEAR('Fiscal Calendar '[FULL_DATE]))&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;RETURN&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;CALCULATE(&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; SUM('Sales Line'[Amt]), &lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; 'Fiscal Calendar Taurus'[week from today] &amp;lt;= LastYearWeek &amp;amp;&amp;amp;&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; 'Fiscal Calendar Taurus'[week from today] &amp;gt; LastYearWeek - SelectedWeekOptionsValue&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;*** &lt;EM&gt;Fiscal Calendar'[week from today] column is calculated as follow :&amp;nbsp;&lt;/EM&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&lt;EM&gt;week from today = DATEDIFF('Fiscal Calendar'[FULL_DATE]-1,TODAY(),WEEK) ***&lt;/EM&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Any insights on how I can improve my second dax calculation on Last N Weeks previous year?&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Thank you!&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;img /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 01 May 2024 02:49:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Last-N-weeks-sales-for-same-period-last-year/m-p/3881084#M151497</guid>
      <dc:creator>Jng_06</dc:creator>
      <dc:date>2024-05-01T02:49:21Z</dc:date>
    </item>
    <item>
      <title>Re: Last N weeks sales for same period last year</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Last-N-weeks-sales-for-same-period-last-year/m-p/3881107#M151498</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="734205" data-lia-user-login="Jng_06" class="lia-mention lia-mention-user"&gt;Jng_06&lt;/a&gt; , Make sure the table also have number along with text so that you can get last few weeks as number &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Last N Week Today = &lt;BR /&gt;var _min = today()// Or add to get monday -WEEKDAY(today() ,2) -6 //Monday week start&lt;BR /&gt;var _max = _min +6 * &lt;EM&gt;SELECTEDVALUE('Last N Weeks'[Last N Weeks ])&lt;/EM&gt;&lt;BR /&gt;return CALCULATE([Net], FILTER('Date','Date'[Date] &amp;gt;=_min &amp;amp;&amp;amp; 'Date'[Date] &amp;lt;= _max))&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Last N Week Today Last year = &lt;BR /&gt;var _min = date(year(today())-1, Month(Today()) , day(Today() ) ) // Or add to get monday -WEEKDAY(today() ,2) -6 //Monday week start&lt;BR /&gt;var _max = _min +6 * &lt;EM&gt;SELECTEDVALUE('Last N Weeks'[Last N Weeks ])&lt;/EM&gt;&lt;BR /&gt;return CALCULATE([Net], FILTER('Date','Date'[Date] &amp;gt;=_min &amp;amp;&amp;amp; 'Date'[Date] &amp;lt;= _max))&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;WOW with help from selected dates&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Power BI — Week on Week and WTD &lt;BR /&gt;&lt;A href="https://medium.com/@amitchandak.1978/power-bi-wtd-questions-time-intelligence-4-5-98c30fab69d3" target="_blank"&gt;https://medium.com/@amitchandak.1978/power-bi-wtd-questions-time-intelligence-4-5-98c30fab69d3&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://community.powerbi.com/t5/Community-Blog/Week-Is-Not-So-Weak-WTD-Last-WTD-and-This-Week-vs-Last-Week/ba-p/1051123" target="_blank"&gt;https://community.powerbi.com/t5/Community-Blog/Week-Is-Not-So-Weak-WTD-Last-WTD-and-This-Week-vs-Last-Week/ba-p/1051123&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://www.youtube.com/watch?v=pnAesWxYgJ8" target="_blank"&gt;https://www.youtube.com/watch?v=pnAesWxYgJ8&lt;/A&gt;&lt;BR /&gt;Time Intelligence, Part of learn Power BI &lt;A href="https://youtu.be/cN8AO3_vmlY?t=27510" target="_blank"&gt;https://youtu.be/cN8AO3_vmlY?t=27510&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 01 May 2024 03:01:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Last-N-weeks-sales-for-same-period-last-year/m-p/3881107#M151498</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2024-05-01T03:01:56Z</dc:date>
    </item>
    <item>
      <title>Re: Last N weeks sales for same period last year</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Last-N-weeks-sales-for-same-period-last-year/m-p/3883211#M151547</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your reply.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried and not sure if I missed anything, the dax is still returning blanks.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My version right now is good on the current year but when I modify it to look at previous year its still returning the result but it look at 4 years ago instead of 1 year&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;EM&gt;Sum Last N Weeks Sales Last Year =&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;VAR SelectedWeekOptionsValue = SELECTEDVALUE('Last N Weeks'[Last N Weeks ])&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;VAR CurrentYearWeek = MAX('Fiscal Calendar'[week from today])&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;VAR LastYearWeek = CALCULATE(MAX('Fiscal Calendar'[week from today]), SAMEPERIODLASTYEAR('Fiscal Calendar '[FULL_DATE]))&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;RETURN&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;CALCULATE(&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; SUM('Sales Line'[Amt]),&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; 'Fiscal Calendar Taurus'[week from today] &amp;lt;= LastYearWeek &amp;amp;&amp;amp;&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; 'Fiscal Calendar Taurus'[week from today] &amp;gt; LastYearWeek - SelectedWeekOptionsValue&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 01 May 2024 16:33:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Last-N-weeks-sales-for-same-period-last-year/m-p/3883211#M151547</guid>
      <dc:creator>Jng_06</dc:creator>
      <dc:date>2024-05-01T16:33:24Z</dc:date>
    </item>
    <item>
      <title>Re: Last N weeks sales for same period last year</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Last-N-weeks-sales-for-same-period-last-year/m-p/3907595#M152220</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="148838" data-lia-user-login="amitchandak" class="lia-mention lia-mention-user"&gt;amitchandak&lt;/a&gt;&amp;nbsp; Thanks for your contribution on this thread.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="734205" data-lia-user-login="Jng_06" class="lia-mention lia-mention-user"&gt;Jng_06&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;You can update the formula of your measure&amp;nbsp;&lt;STRONG&gt;[Sum Last N Weeks Sales Last Year]&lt;/STRONG&gt; as below and check if you can get the expected result.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Sum Last N Weeks Sales Last Year =
VAR SelectedWeekOptionsValue =
    SELECTEDVALUE ( 'Last N Weeks'[Last N Weeks ] )
VAR CurrentYearWeek =
    MAX ( 'Fiscal Calendar'[week from today] )
VAR LastYearWeek =
    CALCULATE (
        MAX ( 'Fiscal Calendar'[week from today] ),
        SAMEPERIODLASTYEAR ( 'Fiscal Calendar '[FULL_DATE] )
    )
RETURN
    CALCULATE (
        SUM ( 'Sales Line'[Amt] ),
        FILTER (
            ALLSELECTED ( 'Fiscal Calendar Taurus' ),
            'Fiscal Calendar Taurus'[week from today] &amp;lt;= LastYearWeek
                &amp;amp;&amp;amp; 'Fiscal Calendar Taurus'[week from today] &amp;gt; LastYearWeek - SelectedWeekOptionsValue
        ),
        ALLSELECTED ( 'Sales Line' )
    )&lt;/LI-CODE&gt;
&lt;P&gt;&lt;SPAN&gt;If the above ones can't help you figure out, please&amp;nbsp;provide some&amp;nbsp;&lt;STRONG&gt;raw data&lt;/STRONG&gt;&amp;nbsp;in your table ''Sales Line'&amp;nbsp;(&lt;EM&gt;&lt;STRONG&gt;exclude&amp;nbsp;sensitive&amp;nbsp;data&lt;/STRONG&gt;&lt;/EM&gt;) with&amp;nbsp;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;Text&lt;/STRONG&gt;&amp;nbsp;&lt;/FONT&gt;format&amp;nbsp;and your&amp;nbsp;&lt;STRONG&gt;expected result&lt;/STRONG&gt;&amp;nbsp;with backend logic and special examples. By the way, please provide the related relationship info if there is any relationship between the table 'Sales Line' and calendar tables. It would be helpful to find out the solution. You can refer the following link to share the required info:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;A href="https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fcommunity.powerbi.com%2Ft5%2FCommunity-Blog%2FHow-to-provide-sample-data-in-the-Power-BI-Forum%2Fba-p%2F963216&amp;amp;data=05%7C02%7Cv-yiruan%40microsoft.com%7Cfe6489193a1b4b3b2c3108dc521fb7ce%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C638475543436019904%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C0%7C%7C%7C&amp;amp;sdata=v%2BEWR63B7CH%2BV5oWqwumB56nQFj9ualyOO61gu8e5SI%3D&amp;amp;reserved=0" target="_blank" rel="noopener nofollow noreferrer"&gt;How to provide sample data in the Power BI Forum&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;And&lt;FONT color="#FF0000"&gt;&amp;nbsp;&lt;STRONG&gt;it is better&lt;/STRONG&gt;&amp;nbsp;&lt;/FONT&gt;if you can share a&amp;nbsp;&lt;FONT color="#008000"&gt;&lt;STRONG&gt;simplified&lt;/STRONG&gt;&amp;nbsp;&lt;/FONT&gt;pbix file. You can refer the following link to upload the file to the community. Thank you.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;A href="https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fcommunity.powerbi.com%2Ft5%2FDesktop%2FHow-to-upload-PBI-in-Community%2Fm-p%2F1672886&amp;amp;data=05%7C02%7Cv-yiruan%40microsoft.com%7Cfe6489193a1b4b3b2c3108dc521fb7ce%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C638475543436025251%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C0%7C%7C%7C&amp;amp;sdata=VsmePB5Y0qB9BNuqnghHQeZSKzaaithvIv0fLr7iulE%3D&amp;amp;reserved=0" target="_blank" rel="noopener nofollow noreferrer"&gt;How to upload PBI in Community&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Best Regards&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 10 May 2024 07:14:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Last-N-weeks-sales-for-same-period-last-year/m-p/3907595#M152220</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-05-10T07:14:35Z</dc:date>
    </item>
  </channel>
</rss>

