<?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: Calculating data for previous month with selected date in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculating-data-for-previous-month-with-selected-date/m-p/4323398#M171641</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="885333" data-lia-user-login="Metacomet" class="lia-mention lia-mention-user"&gt;Metacomet&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Is this issue solved now? If you have any questions, please feel free to share with us.&lt;/P&gt;
&lt;P&gt;Could you please provide example data or sample files here if you have any confused?&amp;nbsp;We could offer you more help if we have information in detail. And what you expect the output to be. There is sensitive data that can be removed in advance.&amp;nbsp;&lt;A href="https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fcommunity.fabric.microsoft.com%2Ft5%2FCommunity-Blog%2FHow-to-provide-sample-data-in-the-Power-BI-Forum%2Fba-p%2F963216&amp;amp;data=05%7C02%7Cv-xinc%40microsoft.com%7Ce4763e15bb0542df6c8208dd199389e1%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C638694844093333755%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&amp;amp;sdata=lptempA8W7A2gTqzRz4PUb6vBAq8b6j9AKilduKysvg%3D&amp;amp;reserved=0" target="_blank"&gt;How to provide sample data in the Power BI Forum - Microsoft Fabric Community&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;/P&gt;
&lt;P&gt;Lucy Chen&lt;/P&gt;</description>
    <pubDate>Wed, 11 Dec 2024 09:04:16 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2024-12-11T09:04:16Z</dc:date>
    <item>
      <title>Calculating data for previous month with selected date</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculating-data-for-previous-month-with-selected-date/m-p/4312337#M171271</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;I have two columns: PRODUCT and DATE.&lt;BR /&gt;On a canvas, there is a slicer, where I can choose any month and year for the last three years.&lt;BR /&gt;Also, there are two cards:&lt;BR /&gt;- The first one is calculating all products for the selected month,&lt;BR /&gt;- The second one should calculate all products for the previous months.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Without a slicer, this code works perfectly:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Products Previous Month =
CALCULATE(
   DISTINCTCOUNT(
        'Table'[PRODUCT]),
        FILTER('Table', PREVIOUSMONTH('Table'[DATE])
        )
)&lt;/LI-CODE&gt;&lt;P&gt;But I can't get it to work with the slicer. Whenever I choose a month, I get the same number on both cards.&lt;/P&gt;&lt;P&gt;I have searched for answers and found some solutions and hints, but for some reason, all calculations return the same amount for the selected and previous month.&lt;BR /&gt;Here is an example of one of the solutions I found:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Products Previous Month =
VAR _SelectedMonth = SELECTEDVALUE('Table'[DATE])
VAR _diff = DATEDIFF(_SelectedMonth, TODAY(), MONTH) +1
RETURN
CALCULATE(
   DISTINCTCOUNT(
        'Table'[PRODUCT]),
        FILTER('Table', DATEADD('Table'[DATE], -_diff, MONTH)
        )
)&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Dec 2024 23:57:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculating-data-for-previous-month-with-selected-date/m-p/4312337#M171271</guid>
      <dc:creator>Metacomet</dc:creator>
      <dc:date>2024-12-03T23:57:42Z</dc:date>
    </item>
    <item>
      <title>Re: Calculating data for previous month with selected date</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculating-data-for-previous-month-with-selected-date/m-p/4312847#M171278</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="885333" data-lia-user-login="Metacomet" class="lia-mention lia-mention-user"&gt;Metacomet&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Try this&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Products Previous Month =
CALCULATE(
   DISTINCTCOUNT(
        'Table'[PRODUCT]),
        FILTER(all('Table'), PREVIOUSMONTH('Table'[DATE])
        )
)&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 04 Dec 2024 06:44:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculating-data-for-previous-month-with-selected-date/m-p/4312847#M171278</guid>
      <dc:creator>Rupak_bi</dc:creator>
      <dc:date>2024-12-04T06:44:03Z</dc:date>
    </item>
    <item>
      <title>Re: Calculating data for previous month with selected date</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculating-data-for-previous-month-with-selected-date/m-p/4313018#M171281</link>
      <description>&lt;P&gt;Hey,&lt;/P&gt;&lt;P&gt;create separate Date table in your model, because if dates in your fact table are not full then &lt;SPAN&gt;PREVIOUSMONTH&amp;nbsp;&lt;/SPAN&gt;functions gets confused and does not return correct answer. You can create Date table with DAX like this:&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Date =&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;MinYear&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;YEAR&lt;/SPAN&gt;&lt;SPAN&gt; ( &lt;/SPAN&gt;&lt;SPAN&gt;MIN&lt;/SPAN&gt;&lt;SPAN&gt; ( &lt;/SPAN&gt;'Table'[DATE]&lt;SPAN&gt;&amp;nbsp;) )&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;MaxYear&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;YEAR&lt;/SPAN&gt;&lt;SPAN&gt; ( &lt;/SPAN&gt;&lt;SPAN&gt;MAX&lt;/SPAN&gt;&lt;SPAN&gt; ( 'Table'[DATE]&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;) )&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;RETURN&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;ADDCOLUMNS&lt;/SPAN&gt;&lt;SPAN&gt; (&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;FILTER&lt;/SPAN&gt;&lt;SPAN&gt; (&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;CALENDARAUTO&lt;/SPAN&gt;&lt;SPAN&gt;( ),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;AND&lt;/SPAN&gt;&lt;SPAN&gt; ( &lt;/SPAN&gt;&lt;SPAN&gt;YEAR&lt;/SPAN&gt;&lt;SPAN&gt; ( &lt;/SPAN&gt;&lt;SPAN&gt;[Date]&lt;/SPAN&gt;&lt;SPAN&gt; ) &amp;gt;= &lt;/SPAN&gt;&lt;SPAN&gt;MinYear&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;YEAR&lt;/SPAN&gt;&lt;SPAN&gt; ( &lt;/SPAN&gt;&lt;SPAN&gt;[Date]&lt;/SPAN&gt;&lt;SPAN&gt; ) &amp;lt;= &lt;/SPAN&gt;&lt;SPAN&gt;MaxYear&lt;/SPAN&gt;&lt;SPAN&gt; )&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; ),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;"Year"&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;YEAR&lt;/SPAN&gt;&lt;SPAN&gt; ( &lt;/SPAN&gt;&lt;SPAN&gt;[Date]&lt;/SPAN&gt;&lt;SPAN&gt; ),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;"Month Name"&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;FORMAT&lt;/SPAN&gt;&lt;SPAN&gt; ( &lt;/SPAN&gt;&lt;SPAN&gt;[Date]&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;"mmmm"&lt;/SPAN&gt;&lt;SPAN&gt; ),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;"Month Number"&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;MONTH&lt;/SPAN&gt;&lt;SPAN&gt; ( &lt;/SPAN&gt;&lt;SPAN&gt;[Date]&lt;/SPAN&gt;&lt;SPAN&gt; )&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&lt;SPAN&gt;)&lt;BR /&gt;&lt;BR /&gt;Then connect in your model Date table field [Date] with your Table field [Date] and use Date table in your slicer and measure for calculating previous month. For previous month DAX looks like this:&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Products Previous Month =&lt;/SPAN&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;[Products Current Month]&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;PREVIOUSMONTH&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Date'&lt;/SPAN&gt;&lt;SPAN&gt;[Date]&lt;/SPAN&gt;&lt;SPAN&gt;))&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;It is always better to create Date table when you do calendar/date calculations, because the functions work best then because you have table with all the dates and calculations can be performed correctly then.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 04 Dec 2024 07:45:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculating-data-for-previous-month-with-selected-date/m-p/4313018#M171281</guid>
      <dc:creator>moncx</dc:creator>
      <dc:date>2024-12-04T07:45:49Z</dc:date>
    </item>
    <item>
      <title>Re: Calculating data for previous month with selected date</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculating-data-for-previous-month-with-selected-date/m-p/4314587#M171322</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="885333" data-lia-user-login="Metacomet" class="lia-mention lia-mention-user"&gt;Metacomet&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Please follow the steps below.&lt;/P&gt;
&lt;P&gt;1. Create a Date Table, add new columns to calculate the years and months in the table.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;2.&amp;nbsp;Manage a new relationship.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;3.&amp;nbsp;Create the first measure to calculate all products for the selected month.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Selected Month Products = 
CALCULATE(
    DISTINCTCOUNT(
        'Table'[Product]),
        ALLSELECTED(
            'Date'[Year],'Date'[Month])
            )&lt;/LI-CODE&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;4.&amp;nbsp;Create the second measure to calculate all products for the previous months.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Products Previous Month = 
Var _minmonth=CALCULATE(MIN('Date'[Month]),ALLSELECTED('Date'[Month]))
RETURN
CALCULATE(
    DISTINCTCOUNT(
        'Table'[Product]),
        FILTER(
            ALL('Table'),
            [Date]&amp;lt;=EOMONTH(DATE(SELECTEDVALUE('Date'[Year]),_minmonth,1),-1)
            )
)&lt;/LI-CODE&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;/P&gt;
&lt;P&gt;Lucy Chen&lt;/P&gt;
&lt;P&gt;If this post &lt;STRONG&gt;&lt;EM&gt;helps&lt;/EM&gt;&lt;/STRONG&gt;, then please consider &lt;STRONG&gt;&lt;EM&gt;Accept it&lt;/EM&gt;&lt;/STRONG&gt; as the solution to help the other members find it more quickly.&lt;/P&gt;</description>
      <pubDate>Thu, 05 Dec 2024 05:52:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculating-data-for-previous-month-with-selected-date/m-p/4314587#M171322</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-12-05T05:52:10Z</dc:date>
    </item>
    <item>
      <title>Re: Calculating data for previous month with selected date</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculating-data-for-previous-month-with-selected-date/m-p/4316856#M171400</link>
      <description>&lt;P&gt;I have found a solution and I'm sharing it if anyone else needs it in the future:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;VAR _PreviousMonthDate = MONTH(PREVIOUSMONTH('TABLE'[DATE]))
VAR _PreviousYearDate = IF(_PreviousMonthDate = 12, YEAR(SELECTEDVALUE('TABLE'[DATE]))-1, YEAR(SELECTEDVALUE('TABLE'[DATE])))
RETURN
CALCULATE(
    DISTINCTCOUNT('TABLE'[PRODUCT]),
        FILTER(
            ALL('TABLE'[DATE]),
                YEAR('TABLE'[DATE]) = _PreviousYearDate
                &amp;amp;&amp;amp;
                MONTH('TABLE'[DATE] = _PreviousMonthDate
            )

)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, while trying many, many solutions, I broke somehow (no idea how) hierarchy in the [DATE] column, and suddenly the first calculation I created started to work:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;CALCULATE(
    DISTINCTCOUNT('TABLE'[PRODUCT]), PREVIOUSMONTH('TABLE'[DATE])
)&lt;/LI-CODE&gt;&lt;P&gt;But I can't have a broken hierarchy, so I had to revert it.&lt;/P&gt;&lt;P&gt;As I would like to understand this, does anyone know why this is creating problems for the calculations?&lt;/P&gt;</description>
      <pubDate>Fri, 06 Dec 2024 11:35:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculating-data-for-previous-month-with-selected-date/m-p/4316856#M171400</guid>
      <dc:creator>Metacomet</dc:creator>
      <dc:date>2024-12-06T11:35:39Z</dc:date>
    </item>
    <item>
      <title>Re: Calculating data for previous month with selected date</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculating-data-for-previous-month-with-selected-date/m-p/4316872#M171401</link>
      <description>&lt;P&gt;Thank you for your advice. I tried this solution, but it always returns BLANKs.&lt;/P&gt;</description>
      <pubDate>Fri, 06 Dec 2024 10:56:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculating-data-for-previous-month-with-selected-date/m-p/4316872#M171401</guid>
      <dc:creator>Metacomet</dc:creator>
      <dc:date>2024-12-06T10:56:34Z</dc:date>
    </item>
    <item>
      <title>Re: Calculating data for previous month with selected date</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculating-data-for-previous-month-with-selected-date/m-p/4316915#M171405</link>
      <description>&lt;P&gt;Thank you for your answer. I tried to apply it to my data, but I have a many-to-one relationship, and this is not working with your solution. I downloaded your solution and changed its relationship to many-to-one, and it stopped working as well. Sorry.&lt;/P&gt;</description>
      <pubDate>Fri, 06 Dec 2024 11:15:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculating-data-for-previous-month-with-selected-date/m-p/4316915#M171405</guid>
      <dc:creator>Metacomet</dc:creator>
      <dc:date>2024-12-06T11:15:55Z</dc:date>
    </item>
    <item>
      <title>Re: Calculating data for previous month with selected date</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculating-data-for-previous-month-with-selected-date/m-p/4316918#M171406</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Thank you for your reply. Unfortunately, this solution always returns the same value, no matter what month I choose.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Dec 2024 11:16:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculating-data-for-previous-month-with-selected-date/m-p/4316918#M171406</guid>
      <dc:creator>Metacomet</dc:creator>
      <dc:date>2024-12-06T11:16:53Z</dc:date>
    </item>
    <item>
      <title>Re: Calculating data for previous month with selected date</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculating-data-for-previous-month-with-selected-date/m-p/4323398#M171641</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="885333" data-lia-user-login="Metacomet" class="lia-mention lia-mention-user"&gt;Metacomet&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Is this issue solved now? If you have any questions, please feel free to share with us.&lt;/P&gt;
&lt;P&gt;Could you please provide example data or sample files here if you have any confused?&amp;nbsp;We could offer you more help if we have information in detail. And what you expect the output to be. There is sensitive data that can be removed in advance.&amp;nbsp;&lt;A href="https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fcommunity.fabric.microsoft.com%2Ft5%2FCommunity-Blog%2FHow-to-provide-sample-data-in-the-Power-BI-Forum%2Fba-p%2F963216&amp;amp;data=05%7C02%7Cv-xinc%40microsoft.com%7Ce4763e15bb0542df6c8208dd199389e1%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C638694844093333755%7CUnknown%7CTWFpbGZsb3d8eyJFbXB0eU1hcGkiOnRydWUsIlYiOiIwLjAuMDAwMCIsIlAiOiJXaW4zMiIsIkFOIjoiTWFpbCIsIldUIjoyfQ%3D%3D%7C0%7C%7C%7C&amp;amp;sdata=lptempA8W7A2gTqzRz4PUb6vBAq8b6j9AKilduKysvg%3D&amp;amp;reserved=0" target="_blank"&gt;How to provide sample data in the Power BI Forum - Microsoft Fabric Community&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;/P&gt;
&lt;P&gt;Lucy Chen&lt;/P&gt;</description>
      <pubDate>Wed, 11 Dec 2024 09:04:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculating-data-for-previous-month-with-selected-date/m-p/4323398#M171641</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-12-11T09:04:16Z</dc:date>
    </item>
  </channel>
</rss>

