<?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: Distinct count on dynamic MIN(datekey) in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Distinct-count-on-dynamic-MIN-datekey/m-p/1313748#M22982</link>
    <description>Hi Anonymous&lt;/LI-USER&gt;.&lt;BR /&gt;&lt;BR /&gt;The code you pasted makes no sense. Sorry. Have a good look at it. All the calculations in the code are completely useless if you return what you return...</description>
    <pubDate>Fri, 21 Aug 2020 08:05:09 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2020-08-21T08:05:09Z</dc:date>
    <item>
      <title>Distinct count on dynamic MIN(datekey)</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Distinct-count-on-dynamic-MIN-datekey/m-p/1307368#M22726</link>
      <description>&lt;P&gt;New with DAX so bear with me.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to derive a count of customers with a first visit, filtered by brand, or channel, or date, or a combination of all.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is an example data set:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I only want to count unique customers where they have had a first visit, dependent on filter context. A first visit is MIN(Metric Date).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have tried this formula:&amp;nbsp;&lt;/P&gt;&lt;P&gt;CALCULATE(DISTINCTCOUNT(Customer ID), Metric = "Visit",&lt;/P&gt;&lt;P&gt;FILTER('Table', Metric Date&amp;lt;=MAX('Dim Date'[dim date key])&amp;amp;&amp;amp;Metric Date&amp;gt;=MIN('Dim Date'[dim date key]))&lt;/P&gt;&lt;P&gt;)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The problem with this is that if I filter on all brands and a metric date &amp;gt;=27/08/2019, this measure puts the first visit date as 27/08/2019. However, this is only accurate if there is a filter for brand = 1. If looking at all brands, the first visit date is actually 26/08/2019 for customer 1, and therefore they shouldn't be counted.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope that makes sense, i.e. the first visit date isn't fixed. Across all brands it is the MIN(metric date) regardless of date filter selected. For a single brand or channel selection, it is the MIN(metric date) for that particular brand or channel.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If anyone can help, I would be very grateful.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Aug 2020 12:08:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Distinct-count-on-dynamic-MIN-datekey/m-p/1307368#M22726</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-08-19T12:08:15Z</dc:date>
    </item>
    <item>
      <title>Re: Distinct count on dynamic MIN(datekey)</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Distinct-count-on-dynamic-MIN-datekey/m-p/1307473#M22731</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp;This looks like a measure aggregation problem. See my blog article about that here: &lt;A href="https://community.powerbi.com/t5/Community-Blog/Design-Pattern-Groups-and-Super-Groups/ba-p/138149" target="_blank" rel="noopener"&gt;https://community.powerbi.com/t5/Community-Blog/Design-Pattern-Groups-and-Super-Groups/ba-p/138149&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;The pattern is: &lt;BR /&gt;MinScoreMeasure = MINX ( SUMMARIZE ( Table, Table[Group] , "Measure",[YourMeasure] ), [Measure])&lt;BR /&gt;MaxScoreMeasure = MAXX ( SUMMARIZE ( Table, Table[Group] , "Measure",[YourMeasure] ), [Measure])&lt;BR /&gt;AvgScoreMeasure = AVERAGEX ( SUMMARIZE ( Table, Table[Group] , "Measure",[YourMeasure] ), [Measure])&lt;BR /&gt;etc.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In your case you would be using COUNTX. The SUMMARIZE should ensure that things are distinct if you group by customer.&lt;/P&gt;</description>
      <pubDate>Wed, 19 Aug 2020 12:56:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Distinct-count-on-dynamic-MIN-datekey/m-p/1307473#M22731</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2020-08-19T12:56:30Z</dc:date>
    </item>
    <item>
      <title>Re: Distinct count on dynamic MIN(datekey)</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Distinct-count-on-dynamic-MIN-datekey/m-p/1307622#M22739</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;// Let's say that the table you're showing
// is the fact table, FT, and it's connected
// on the obivous fields to dimensions:
// Customer, Brand, Channel, Date.
// The other fileds, Metric and Venue,
// should also have their own dimensions
// but I'll use Metric as it is. Please
// note as well, that you should never
// drop a column from a fact table onto
// the canvas if there is a dimension
// attached to it. This will almost always
// mess up calculations. Such columns should
// always be hidden.

// Please come up with a better name
// for the measure. The name of the
// measure should give a hint at what
// it really does. Thanks.

[# Cust With First Visit] =
var __startDate = MIN( 'Date'[Date] )
var __endDate = MAX( 'Date'[Date] )
var __result =
    SUMX(
        Customer,
        var __firstDate =
            CALCULATE(
                MIN( FT[Metric Date] ),
                // If you don't want to intersect
                // the filter on Metric with "visit",
                // just remove the keepfilters wrapping
                // and only leave the condition under it.
                KEEPFILTERS( FT[Metric] = "visit" ),
                ALL( 'Date' )
            )
        return
            (__firstDate &amp;gt;= __startDate)
            *
            (__firstDate &amp;lt;= __endDate)
    )
return
    if( __result, __result )&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Aug 2020 13:40:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Distinct-count-on-dynamic-MIN-datekey/m-p/1307622#M22739</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-08-19T13:40:25Z</dc:date>
    </item>
    <item>
      <title>Re: Distinct count on dynamic MIN(datekey)</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Distinct-count-on-dynamic-MIN-datekey/m-p/1307824#M22747</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for the repsonse.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This seems to count all visits in the specified range, rather than the number of first visits only.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any thoughts?&lt;/P&gt;</description>
      <pubDate>Wed, 19 Aug 2020 14:35:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Distinct-count-on-dynamic-MIN-datekey/m-p/1307824#M22747</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-08-19T14:35:03Z</dc:date>
    </item>
    <item>
      <title>Re: Distinct count on dynamic MIN(datekey)</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Distinct-count-on-dynamic-MIN-datekey/m-p/1307842#M22749</link>
      <description>&lt;P&gt;Also, your assumptions are correct, re: applicable dimensions on the relvant columns and being used instead of the fact table columns.&amp;nbsp; For the sake of ease I left them out of the post&lt;/P&gt;</description>
      <pubDate>Wed, 19 Aug 2020 14:39:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Distinct-count-on-dynamic-MIN-datekey/m-p/1307842#M22749</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-08-19T14:39:04Z</dc:date>
    </item>
    <item>
      <title>Re: Distinct count on dynamic MIN(datekey)</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Distinct-count-on-dynamic-MIN-datekey/m-p/1307849#M22750</link>
      <description>I wrote the formula based on your not-entirely-clear description. Please play with the formula (changing it) to see whether you can get what you want. I can't do any better since I don't quite understand your requirements. The best way to get your questions answered quickly and correctly is to read this and stick to it: &lt;A href="https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490" target="_blank"&gt;https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490&lt;/A&gt;</description>
      <pubDate>Wed, 19 Aug 2020 14:40:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Distinct-count-on-dynamic-MIN-datekey/m-p/1307849#M22750</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-08-19T14:40:07Z</dc:date>
    </item>
    <item>
      <title>Re: Distinct count on dynamic MIN(datekey)</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Distinct-count-on-dynamic-MIN-datekey/m-p/1307932#M22751</link>
      <description>&lt;P&gt;Slight tweak and this works, for anyone this may help reading in the future:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;change VAR __result to this for first date value rather than all date values in the range:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="token punctuation"&gt;&lt;SPAN class="token keyword"&gt;var&lt;/SPAN&gt;&lt;SPAN&gt; __result &lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN class="token function"&gt;SUMX&lt;/SPAN&gt;(&lt;SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; VALUES(Customer ID&lt;/SPAN&gt;,&lt;SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN class="token keyword"&gt;var&lt;/SPAN&gt;&lt;SPAN&gt; __firstDate &lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN class="token function"&gt;CALCULATE&lt;/SPAN&gt;(&lt;SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN class="token function"&gt;MIN&lt;/SPAN&gt;(&lt;SPAN&gt; FT&lt;/SPAN&gt;[&lt;SPAN&gt;Metric Date&lt;/SPAN&gt;] ),&lt;SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN class="token function"&gt;KEEPFILTERS&lt;/SPAN&gt;(&lt;SPAN&gt; FT&lt;/SPAN&gt;[&lt;SPAN&gt;Metric&lt;/SPAN&gt;] &lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt; &lt;SPAN class="token string"&gt;"visit"&lt;/SPAN&gt; ),&lt;SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN class="token function"&gt;ALL&lt;/SPAN&gt;( &lt;SPAN class="token string"&gt;'Date'&lt;/SPAN&gt; )&lt;SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Again, thanks for your help&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Aug 2020 14:57:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Distinct-count-on-dynamic-MIN-datekey/m-p/1307932#M22751</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-08-19T14:57:49Z</dc:date>
    </item>
    <item>
      <title>Re: Distinct count on dynamic MIN(datekey)</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Distinct-count-on-dynamic-MIN-datekey/m-p/1308067#M22755</link>
      <description>Anonymous&lt;/LI-USER&gt;&lt;BR /&gt;&lt;BR /&gt;Please mark this topic as resolved so that it helps others. Also, sorry but I don't understand your last post. You say to change var __result but it looks like the code you give is no different than the one I wrote apart from the first argument of SUMX which does exactly the same thing as the first argument in my formula. Could you please paste the whole correct code in here. That will really be helpful. Thanks.</description>
      <pubDate>Wed, 19 Aug 2020 15:38:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Distinct-count-on-dynamic-MIN-datekey/m-p/1308067#M22755</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-08-19T15:38:45Z</dc:date>
    </item>
    <item>
      <title>Re: Distinct count on dynamic MIN(datekey)</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Distinct-count-on-dynamic-MIN-datekey/m-p/1309399#M22825</link>
      <description>&lt;P&gt;Hello&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is your issue resolved? If yes, then please mark the appropriate post as a solution. This will help others as well.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If not, please share the details and we can work along to resolve it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers!&lt;BR /&gt;Vivek&lt;BR /&gt;&lt;BR /&gt;Blog: &lt;A href="https://www.vivran.in/my-blog" target="_blank"&gt;vivran.in/my-blog&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://www.linkedin.com/in/vivek-ranjan-063a1a17b/" target="_blank"&gt;Connect on LinkedIn&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://twitter.com/imvivran" target="_blank"&gt;Follow on Twitter&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Aug 2020 03:20:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Distinct-count-on-dynamic-MIN-datekey/m-p/1309399#M22825</guid>
      <dc:creator>vivran22</dc:creator>
      <dc:date>2020-08-20T03:20:07Z</dc:date>
    </item>
    <item>
      <title>Re: Distinct count on dynamic MIN(datekey)</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Distinct-count-on-dynamic-MIN-datekey/m-p/1311865#M22913</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;it's possible I misinterpreted what was being referred to by Customer in SUMX(Customer) and therefore giving the wrong figures.&lt;/P&gt;&lt;P&gt;Full working solution I used:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;VAR __startdate = MIN('Date'[Dim date key])&lt;/P&gt;&lt;P&gt;VAR __enddate = MAX('Date'[Dim date key])&lt;/P&gt;&lt;P&gt;VAR __result = SUMX(VALUES('FT'[Customer_id]),&lt;/P&gt;&lt;P&gt;VAR __firstdate =&amp;nbsp;&lt;/P&gt;&lt;P&gt;CALCULATE(&lt;/P&gt;&lt;P&gt;MIN('FT'[Metric Date]),&lt;/P&gt;&lt;P&gt;KEEPFILTERS('FT'[Metric]="Visit"),&lt;/P&gt;&lt;P&gt;ALL('Date'))&lt;/P&gt;&lt;P&gt;RETURN&amp;nbsp;&lt;/P&gt;&lt;P&gt;(__firstdate &amp;gt;= __startdate) * (__firstdate &amp;lt;= __enddate))&lt;/P&gt;&lt;P&gt;RETURN&lt;/P&gt;&lt;P&gt;IF(__result, __result)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope that's helpful.&lt;/P&gt;</description>
      <pubDate>Thu, 20 Aug 2020 16:27:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Distinct-count-on-dynamic-MIN-datekey/m-p/1311865#M22913</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-08-20T16:27:12Z</dc:date>
    </item>
    <item>
      <title>Re: Distinct count on dynamic MIN(datekey)</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Distinct-count-on-dynamic-MIN-datekey/m-p/1313748#M22982</link>
      <description>Hi Anonymous&lt;/LI-USER&gt;.&lt;BR /&gt;&lt;BR /&gt;The code you pasted makes no sense. Sorry. Have a good look at it. All the calculations in the code are completely useless if you return what you return...</description>
      <pubDate>Fri, 21 Aug 2020 08:05:09 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Distinct-count-on-dynamic-MIN-datekey/m-p/1313748#M22982</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-08-21T08:05:09Z</dc:date>
    </item>
    <item>
      <title>Re: Distinct count on dynamic MIN(datekey)</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Distinct-count-on-dynamic-MIN-datekey/m-p/1313912#M22993</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;I'm not sure it makes them useless as this still works as intended and the figures are reconciling with the database numbers.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, it is uneccessary, it can be changed to RETURN __result.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you check your initial post, you'll see that you also posted the same IF statement.&lt;/P&gt;</description>
      <pubDate>Fri, 21 Aug 2020 09:02:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Distinct-count-on-dynamic-MIN-datekey/m-p/1313912#M22993</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-08-21T09:02:10Z</dc:date>
    </item>
    <item>
      <title>Re: Distinct count on dynamic MIN(datekey)</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Distinct-count-on-dynamic-MIN-datekey/m-p/1313927#M22994</link>
      <description>OK. I took what you posted and ran it through daxformatter. This is exactly why formulas should be correctly formatted. I was reading the raw text you posted without any formatting and I misunderstood it. Please next time when you post code, format it correctly. Thanks.</description>
      <pubDate>Fri, 21 Aug 2020 09:07:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Distinct-count-on-dynamic-MIN-datekey/m-p/1313927#M22994</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-08-21T09:07:52Z</dc:date>
    </item>
  </channel>
</rss>

