<?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: DAX formula Not working in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula-Not-working/m-p/4607496#M176378</link>
    <description>&lt;P&gt;CALCULATE(countrows(visits))&lt;/P&gt;</description>
    <pubDate>Wed, 12 Mar 2025 19:37:23 GMT</pubDate>
    <dc:creator>sixathur</dc:creator>
    <dc:date>2025-03-12T19:37:23Z</dc:date>
    <item>
      <title>DAX formula Not working</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula-Not-working/m-p/4597771#M176038</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I am trying to create a DAX measure where an existing measure named "TOTAL VISITS", if total visits is more than 58, multiply the difference between TOTAL VISITS and 58 by 15. For example: Total visits = 60, 60-58 =2, then 2(15) =30. The idea is do that for every week in the given dataset then total all the data that is multiplied by 2. Right now when I use IF statement or VAR statements, it's totaling ALL the visits not just visits more than 58 and multiplying that with 15. Is it because I am using a Measure (TOTAL VISITS) instead of an actual column?&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Mar 2025 06:04:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula-Not-working/m-p/4597771#M176038</guid>
      <dc:creator>sixathur</dc:creator>
      <dc:date>2025-03-06T06:04:17Z</dc:date>
    </item>
    <item>
      <title>Re: DAX formula Not working</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula-Not-working/m-p/4597848#M176041</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1233825" data-lia-user-login="sixathur" class="lia-mention lia-mention-user"&gt;sixathur&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Can u please try the below DAX.&lt;BR /&gt;&lt;BR /&gt;For_Visits_more_than_58 =&lt;BR /&gt;VAR Visits_Above_58 =&lt;BR /&gt;SUMX(&lt;BR /&gt;VALUES('Table'[Week]),&amp;nbsp;&lt;BR /&gt;MAX( [TOTAL VISITS] - 58, 0 ) * 15&lt;BR /&gt;)&lt;BR /&gt;RETURN&lt;BR /&gt;Visits_Above_58&lt;BR /&gt;&lt;BR /&gt;If you find this solution usefull then accept it as solution.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Mar 2025 10:39:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula-Not-working/m-p/4597848#M176041</guid>
      <dc:creator>mdaatifraza5556</dc:creator>
      <dc:date>2025-03-06T10:39:31Z</dc:date>
    </item>
    <item>
      <title>Re: DAX formula Not working</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula-Not-working/m-p/4597885#M176042</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1233825" data-lia-user-login="sixathur" class="lia-mention lia-mention-user"&gt;sixathur&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;You're on the right track, and the issue likely stems from how measures work in Power BI. Since &lt;CODE data-start="96" data-end="110"&gt;TOTAL VISITS&lt;/CODE&gt; is a measure, it dynamically evaluates based on the current filter context, which means you need to carefully control its aggregation to ensure only visits above 58 are counted.&lt;BR /&gt;try this&lt;BR /&gt;Extra_Visit_Cost = &lt;BR /&gt;SUMX(&lt;BR /&gt;VALUES('YourTable'[Week]), -- Iterate over each week&lt;BR /&gt;VAR VisitCount = [TOTAL VISITS] -- Get total visits for the current week&lt;BR /&gt;RETURN IF(VisitCount &amp;gt; 58, (VisitCount - 58) * 15, 0)&lt;BR /&gt;)&lt;BR /&gt;&lt;BR /&gt;&lt;FONT color="#FF6600"&gt;Did I answer your question? Mark my post as a solution! Appreciate your Kudos !!&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Mar 2025 07:06:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula-Not-working/m-p/4597885#M176042</guid>
      <dc:creator>johnbasha33</dc:creator>
      <dc:date>2025-03-06T07:06:03Z</dc:date>
    </item>
    <item>
      <title>Re: DAX formula Not working</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula-Not-working/m-p/4605966#M176319</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Thank you for your help, the formula worked but when I use the card visual for this measure, its still giving me the total of the visits*15, not the difference*15.&lt;/P&gt;</description>
      <pubDate>Wed, 12 Mar 2025 00:21:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula-Not-working/m-p/4605966#M176319</guid>
      <dc:creator>sixathur</dc:creator>
      <dc:date>2025-03-12T00:21:39Z</dc:date>
    </item>
    <item>
      <title>Re: DAX formula Not working</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula-Not-working/m-p/4605978#M176320</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Thank you for your help, the formula worked but when I use the card visual for this measure, its still giving me the total of the visits*15, not the difference*15.&lt;/P&gt;</description>
      <pubDate>Wed, 12 Mar 2025 00:37:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula-Not-working/m-p/4605978#M176320</guid>
      <dc:creator>sixathur</dc:creator>
      <dc:date>2025-03-12T00:37:29Z</dc:date>
    </item>
    <item>
      <title>Re: DAX formula Not working</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula-Not-working/m-p/4606121#M176324</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1233825" data-lia-user-login="sixathur" class="lia-mention lia-mention-user"&gt;sixathur&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Please try my above DAX.&amp;nbsp;&lt;BR /&gt;belowis the snapshot which i have tried&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;SPAN&gt;For_Visits_more_than_58&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;VAR&lt;/SPAN&gt; &lt;SPAN&gt;Visits_Above_58&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;SUMX&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;VALUES&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Date'&lt;/SPAN&gt;&lt;SPAN&gt;[weekno]&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;MAX&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; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;[TotalVisits]&lt;/SPAN&gt;&lt;SPAN&gt; - &lt;/SPAN&gt;&lt;SPAN&gt;58&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; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;0&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;15&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;RETURN&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;Visits_Above_58&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;--------------------------------------------&lt;BR /&gt;If total visits is less than 60 then it shows 0&lt;BR /&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;Please accept it as a solution if you got your answer.&lt;/P&gt;</description>
      <pubDate>Wed, 12 Mar 2025 03:50:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula-Not-working/m-p/4606121#M176324</guid>
      <dc:creator>mdaatifraza5556</dc:creator>
      <dc:date>2025-03-12T03:50:00Z</dc:date>
    </item>
    <item>
      <title>Re: DAX formula Not working</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula-Not-working/m-p/4607320#M176373</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;I do not have a week number slicer, my slicer is based on the start of the week date.&lt;/P&gt;</description>
      <pubDate>Wed, 12 Mar 2025 16:55:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula-Not-working/m-p/4607320#M176373</guid>
      <dc:creator>sixathur</dc:creator>
      <dc:date>2025-03-12T16:55:22Z</dc:date>
    </item>
    <item>
      <title>Re: DAX formula Not working</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula-Not-working/m-p/4607412#M176374</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1233825" data-lia-user-login="sixathur" class="lia-mention lia-mention-user"&gt;sixathur&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What is the dax of TotalVisits measure?&lt;/P&gt;</description>
      <pubDate>Wed, 12 Mar 2025 18:20:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula-Not-working/m-p/4607412#M176374</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2025-03-12T18:20:42Z</dc:date>
    </item>
    <item>
      <title>Re: DAX formula Not working</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula-Not-working/m-p/4607496#M176378</link>
      <description>&lt;P&gt;CALCULATE(countrows(visits))&lt;/P&gt;</description>
      <pubDate>Wed, 12 Mar 2025 19:37:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula-Not-working/m-p/4607496#M176378</guid>
      <dc:creator>sixathur</dc:creator>
      <dc:date>2025-03-12T19:37:23Z</dc:date>
    </item>
    <item>
      <title>Re: DAX formula Not working</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula-Not-working/m-p/4676685#M179100</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1233825" data-lia-user-login="sixathur" class="lia-mention lia-mention-user"&gt;sixathur&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Thank you for reaching out in Microsoft Community Forum.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Thank you&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="317289" data-lia-user-login="tamerj1" class="lia-mention lia-mention-user"&gt;tamerj1&lt;/a&gt;&amp;nbsp; &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="921080" data-lia-user-login="mdaatifraza5556" class="lia-mention lia-mention-user"&gt;mdaatifraza5556&lt;/a&gt;&amp;nbsp; &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="585150" data-lia-user-login="johnbasha33" class="lia-mention lia-mention-user"&gt;johnbasha33&lt;/a&gt;&amp;nbsp;&amp;nbsp;for the helpful response.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Please follow below steps to resolve the error;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;1.Adjust the [TotalVisits] measure to respect the weekly context (start of the week date). Use this DAX:&lt;/P&gt;
&lt;P&gt;TotalVisits = &lt;BR /&gt;CALCULATE(&lt;BR /&gt;COUNTROWS(visits),&lt;BR /&gt;ALLEXCEPT('Date', 'Date'[WeekStartDate])&lt;BR /&gt;)&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;2.Extra Visit Cost Measure:&lt;/P&gt;
&lt;P&gt;For_Visits_More_Than_58 =&lt;BR /&gt;SUMX(&lt;BR /&gt;VALUES('Date'[WeekStartDate]), -- Iterate over each week start date&lt;BR /&gt;VAR WeeklyVisits = [TotalVisits]&lt;BR /&gt;VAR ExtraVisits = WeeklyVisits - 58&lt;BR /&gt;RETURN IF(ExtraVisits &amp;gt; 0, ExtraVisits * 15, 0)&lt;BR /&gt;)&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;3. Please use visuals like below&lt;/P&gt;
&lt;P&gt;-&amp;gt;Use a Matrix visual to verify the logic per week.&lt;/P&gt;
&lt;P&gt;-&amp;gt;The Card visual will show the aggregated total, but check per week first in Matrix.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Please continue using Microsoft community forum.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;If you found this post helpful, please consider marking it as "&lt;STRONG&gt;Accept as Solution&lt;/STRONG&gt;" and give it a '&lt;STRONG&gt;Kudos&lt;/STRONG&gt;'. if it was helpful. help other members find it more easily.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt;Pavan.&lt;/P&gt;</description>
      <pubDate>Fri, 02 May 2025 04:26:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula-Not-working/m-p/4676685#M179100</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-05-02T04:26:22Z</dc:date>
    </item>
    <item>
      <title>Re: DAX formula Not working</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula-Not-working/m-p/4682854#M179352</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1233825" data-lia-user-login="sixathur" class="lia-mention lia-mention-user"&gt;sixathur&lt;/a&gt;,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I wanted to check if you had the opportunity to review the information provided. Please feel free to contact us if you have any further questions. If my response has addressed your query, please "&lt;/SPAN&gt;&lt;STRONG&gt;Accept&amp;nbsp; as&amp;nbsp; Solution&lt;/STRONG&gt;&lt;SPAN&gt;" and give a '&lt;/SPAN&gt;&lt;STRONG&gt;Kudos&lt;/STRONG&gt;&lt;SPAN&gt;' so other members can easily find it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Pavan.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 07 May 2025 09:06:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula-Not-working/m-p/4682854#M179352</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-05-07T09:06:54Z</dc:date>
    </item>
    <item>
      <title>Re: DAX formula Not working</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula-Not-working/m-p/4687764#M179526</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1233825" data-lia-user-login="sixathur" class="lia-mention lia-mention-user"&gt;sixathur&lt;/a&gt;,&lt;BR /&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I hope this information is helpful. Please let me know if you have any further questions or if you'd like to discuss this further. If this answers your question, kindly "&lt;STRONG&gt;A&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;ccept &amp;nbsp;as&amp;nbsp; Solution"&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;and give it a '&lt;/SPAN&gt;&lt;STRONG&gt;Kudos&lt;/STRONG&gt;&lt;SPAN&gt;' so others can find it easily.&lt;BR /&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you,&lt;BR /&gt;Pavan.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 11 May 2025 08:39:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula-Not-working/m-p/4687764#M179526</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-05-11T08:39:57Z</dc:date>
    </item>
    <item>
      <title>Re: DAX formula Not working</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula-Not-working/m-p/4694758#M179803</link>
      <description>&lt;P&gt;&lt;SPAN&gt;&lt;FONT&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1233825" data-lia-user-login="sixathur" class="lia-mention lia-mention-user"&gt;sixathur&lt;/a&gt;,&lt;/FONT&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I wanted to follow up since we haven't heard back from you regarding our last response. We hope your issue has been resolved.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;If the community member's answer your query, please mark it as "&lt;/SPAN&gt;&lt;STRONG&gt;Accept as Solution&lt;/STRONG&gt;&lt;SPAN&gt;" and select "&lt;/SPAN&gt;&lt;STRONG&gt;Yes&lt;/STRONG&gt;&lt;SPAN&gt;" if it was helpful.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;If you need any further assistance, feel free to reach out.&lt;BR /&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Pavan.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 15 May 2025 16:41:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula-Not-working/m-p/4694758#M179803</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-05-15T16:41:56Z</dc:date>
    </item>
  </channel>
</rss>

