<?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: SUMIFS in DAX  without relationship in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMIFS-in-DAX-without-relationship/m-p/2722127#M83059</link>
    <description>&lt;P&gt;Hey &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="24978" data-lia-user-login="smpa01" class="lia-mention lia-mention-user"&gt;smpa01&lt;/a&gt;, thanks for your clear response. I'm trying to expand this to match multiple fields. Would the following work for matching two (or more) columns instead of one? It gets me close, but I'm in over my head.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;contains = 
CALCULATE (
    SUM ( Table2[records] ),
    FILTER (
        Table2,
        CONTAINS ( SUMMARIZE ( Table1, Table1[col_one], Table2[col_two] ), Table1[col_one], Table2[col_one], Table1[col_two], Table2[col_two] )
    )
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 24 Aug 2022 06:01:28 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2022-08-24T06:01:28Z</dc:date>
    <item>
      <title>SUMIFS in DAX  without relationship</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMIFS-in-DAX-without-relationship/m-p/2268824#M55140</link>
      <description>&lt;P&gt;Is there any way where we can use SUMIFS in DAX without the relationship present.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have two tables&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Table 1&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Table 2&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I know for a fact that most of them would ask me to relate the table above as there is one to many relationship. If there are multiple columns and I have to do validation based on criterias then I would use SUMIFS. Can anyone help me down with the expression for bringing values from table 2 to table 1?&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jan 2022 07:14:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMIFS-in-DAX-without-relationship/m-p/2268824#M55140</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-01-06T07:14:35Z</dc:date>
    </item>
    <item>
      <title>Re: SUMIFS in DAX  without relationship</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMIFS-in-DAX-without-relationship/m-p/2268850#M55141</link>
      <description>&lt;P&gt;Anonymous&lt;/a&gt; , You can move across the table . Example change as per need &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;A new column in table 1&lt;/P&gt;
&lt;P&gt;New column = sumx(Table2, Table2[Col] = Table1[Col] &amp;amp;&amp;amp; Table2[Col2] = Table1[Col2]) Table2[Value])&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;refer 4 ways to copy data from one table to another&lt;BR /&gt;&lt;A href="https://www.youtube.com/watch?v=Wu1mWxR23jU" target="_blank"&gt;https://www.youtube.com/watch?v=Wu1mWxR23jU&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://www.youtube.com/watch?v=czNHt7UXIe8" target="_blank"&gt;https://www.youtube.com/watch?v=czNHt7UXIe8&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jan 2022 07:16:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMIFS-in-DAX-without-relationship/m-p/2268850#M55141</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2022-01-06T07:16:38Z</dc:date>
    </item>
    <item>
      <title>Re: SUMIFS in DAX  without relationship</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMIFS-in-DAX-without-relationship/m-p/2268870#M55143</link>
      <description>&lt;P&gt;Is there any way round I can use a measure and get it? As I see if we use the column I have many values in my table 2 and it will duplicate. So that It can help me down.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jan 2022 07:22:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMIFS-in-DAX-without-relationship/m-p/2268870#M55143</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-01-06T07:22:40Z</dc:date>
    </item>
    <item>
      <title>Re: SUMIFS in DAX  without relationship</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMIFS-in-DAX-without-relationship/m-p/2268934#M55144</link>
      <description>&lt;P&gt;H&amp;nbsp;Anonymous&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here are 2 solutions, 1 is a measure and the other is a calculated column.&lt;/P&gt;&lt;P&gt;I have named the tables Dim and Data.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Total Measure =
var selected_name = SELECTEDVALUE(Dim[Names])
var Result = Calculate(SUM(Data[Value]), Data[Names] = selected_name)
Return
Result

Total Column = Calculate(SUM(Data[Value]), Filter(Data,Data[Names] = Dim[Names]))&lt;/LI-CODE&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Hope this helps.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Thank you,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Vishesh Jain&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 06 Jan 2022 07:56:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMIFS-in-DAX-without-relationship/m-p/2268934#M55144</guid>
      <dc:creator>visheshjain</dc:creator>
      <dc:date>2022-01-06T07:56:18Z</dc:date>
    </item>
    <item>
      <title>Re: SUMIFS in DAX  without relationship</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMIFS-in-DAX-without-relationship/m-p/2268937#M55145</link>
      <description>&lt;P&gt;Anonymous&lt;/a&gt; , Merge in power query with concatenated keys could be option for more than one column&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Now for measure, you need a context&lt;/P&gt;
&lt;P&gt;measure = &lt;BR /&gt;calculate(sumX(values(Table2[ID]), Table2[Value]),&lt;/P&gt;
&lt;P&gt;filter(Table2, Table2[Col] = max(Table1[Col]) &amp;amp;&amp;amp; Table2[Col2] = max(Table1[Col2]) )&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;or refer &lt;A href="https://docs.microsoft.com/en-us/dax/treatas-function" target="_blank"&gt;https://docs.microsoft.com/en-us/dax/treatas-function&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;correction to column suggested&lt;/P&gt;
&lt;P&gt;New column = sumx(filter(Table2, Table2[Col] = Table1[Col] &amp;amp;&amp;amp; Table2[Col2] = Table1[Col2]), Table2[Value])&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jan 2022 07:56:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMIFS-in-DAX-without-relationship/m-p/2268937#M55145</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2022-01-06T07:56:31Z</dc:date>
    </item>
    <item>
      <title>Re: SUMIFS in DAX  without relationship</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMIFS-in-DAX-without-relationship/m-p/2268963#M55149</link>
      <description>&lt;P&gt;Hi Vishesh,&lt;BR /&gt;&lt;BR /&gt;Thanks for the help. It did work, but I am facing an issue with the same. I see that it doesn't give me the total value even if it is enabled.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could you please help me down on the same?&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jan 2022 08:13:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMIFS-in-DAX-without-relationship/m-p/2268963#M55149</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-01-06T08:13:53Z</dc:date>
    </item>
    <item>
      <title>Re: SUMIFS in DAX  without relationship</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMIFS-in-DAX-without-relationship/m-p/2268989#M55152</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is new measure that uses the existing measue.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Final Total = &lt;/SPAN&gt;&lt;SPAN&gt;IF&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;ISINSCOPE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Dim[Names]&lt;/SPAN&gt;&lt;SPAN&gt;), &lt;/SPAN&gt;&lt;SPAN&gt;[Total]&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;SUMX&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;VALUES&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Dim[Names]&lt;/SPAN&gt;&lt;SPAN&gt;), &lt;/SPAN&gt;&lt;SPAN&gt;[Total]&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&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;&lt;SPAN&gt;I am unable to figure out a way to do this is the same measure, but this should work.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Hope this helps.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Thank you,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Vishesh Jain&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 06 Jan 2022 08:36:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMIFS-in-DAX-without-relationship/m-p/2268989#M55152</guid>
      <dc:creator>visheshjain</dc:creator>
      <dc:date>2022-01-06T08:36:02Z</dc:date>
    </item>
    <item>
      <title>Re: SUMIFS in DAX  without relationship</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMIFS-in-DAX-without-relationship/m-p/2269652#M55199</link>
      <description>&lt;P&gt;Anonymous&lt;/a&gt;&amp;nbsp; there are at least 4 different ways to get what you want without relationship. Please refer to the attached pbix.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&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;</description>
      <pubDate>Thu, 06 Jan 2022 14:53:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMIFS-in-DAX-without-relationship/m-p/2269652#M55199</guid>
      <dc:creator>smpa01</dc:creator>
      <dc:date>2022-01-06T14:53:23Z</dc:date>
    </item>
    <item>
      <title>Re: SUMIFS in DAX  without relationship</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMIFS-in-DAX-without-relationship/m-p/2269827#M55209</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="24978" data-lia-user-login="smpa01" class="lia-mention lia-mention-user"&gt;smpa01&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you just explain me how contains work? As I see that there is no filter appied, I am quite trying to understand the execution of it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jan 2022 16:07:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMIFS-in-DAX-without-relationship/m-p/2269827#M55209</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-01-06T16:07:31Z</dc:date>
    </item>
    <item>
      <title>Re: SUMIFS in DAX  without relationship</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMIFS-in-DAX-without-relationship/m-p/2269869#M55214</link>
      <description>&lt;P&gt;Anonymous&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;contains = 
CALCULATE (
    SUM ( Table2[records] ),
    FILTER (
        Table2,
        CONTAINS ( VALUES ( Table1[col_one] ), Table1[col_one], Table2[col_one] )
    )
)


contains=
CALCULATE (
    &amp;lt;target_measure&amp;gt;,
    FILTER (
         &amp;lt;target_tbl&amp;gt; ,
        CONTAINS (
            VALUES ( &amp;lt;lookup_granularity_column&amp;gt; ),
            &amp;lt;lookup_granularity_column&amp;gt;,
            &amp;lt;target_granularity_column&amp;gt;
        )
    )
)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://dax.guide/contains/" target="_self"&gt;recommended reading&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jan 2022 16:23:09 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMIFS-in-DAX-without-relationship/m-p/2269869#M55214</guid>
      <dc:creator>smpa01</dc:creator>
      <dc:date>2022-01-06T16:23:09Z</dc:date>
    </item>
    <item>
      <title>Re: SUMIFS in DAX  without relationship</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMIFS-in-DAX-without-relationship/m-p/2273338#M55378</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="24978" data-lia-user-login="smpa01" class="lia-mention lia-mention-user"&gt;smpa01&lt;/a&gt;&amp;nbsp;- Why doesn't the below query give me the total?&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;CALCULATE(SUM(Table2[Records]),FILTER(Table2,Table2[Col_one]=IF(HASONEVALUE(Table1[col_one]),VALUES(Table1[col_one])))&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there any issue in the formula?&lt;/P&gt;</description>
      <pubDate>Sat, 08 Jan 2022 08:01:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMIFS-in-DAX-without-relationship/m-p/2273338#M55378</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-01-08T08:01:47Z</dc:date>
    </item>
    <item>
      <title>Re: SUMIFS in DAX  without relationship</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMIFS-in-DAX-without-relationship/m-p/2722127#M83059</link>
      <description>&lt;P&gt;Hey &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="24978" data-lia-user-login="smpa01" class="lia-mention lia-mention-user"&gt;smpa01&lt;/a&gt;, thanks for your clear response. I'm trying to expand this to match multiple fields. Would the following work for matching two (or more) columns instead of one? It gets me close, but I'm in over my head.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;contains = 
CALCULATE (
    SUM ( Table2[records] ),
    FILTER (
        Table2,
        CONTAINS ( SUMMARIZE ( Table1, Table1[col_one], Table2[col_two] ), Table1[col_one], Table2[col_one], Table1[col_two], Table2[col_two] )
    )
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Aug 2022 06:01:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMIFS-in-DAX-without-relationship/m-p/2722127#M83059</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-08-24T06:01:28Z</dc:date>
    </item>
    <item>
      <title>Re: SUMIFS in DAX  without relationship</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMIFS-in-DAX-without-relationship/m-p/2726172#M83348</link>
      <description>&lt;P&gt;Anonymous&lt;/a&gt;&amp;nbsp;yes sure can.&lt;/P&gt;
&lt;P&gt;Here is an example with TREATAS&lt;/P&gt;
&lt;P&gt;If you have the following&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;DAX can convert to this&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;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Measure =
CALCULATE (
    SUM ( t2[Val] ),
    TREATAS ( SUMMARIZE ( t1, t1[col_one], t1[col_two] ), t2[col_one], t2[col_two] )
)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Aug 2022 13:30:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMIFS-in-DAX-without-relationship/m-p/2726172#M83348</guid>
      <dc:creator>smpa01</dc:creator>
      <dc:date>2022-08-25T13:30:35Z</dc:date>
    </item>
    <item>
      <title>Re: SUMIFS in DAX  without relationship</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMIFS-in-DAX-without-relationship/m-p/2848076#M91188</link>
      <description>&lt;P&gt;Thanks, this helped too. But, what I realised (and my warning for anyone stumbling accross this post), is that setting up relationships is SO much better. The limitation without relationships is that we cannot filter by any fields not contained in the SUMMARIZE function. Setting up a table with unique values of both/all tables, relating it and using that in the slicer/filter allows the original measure above to become:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Measure = SUM ( t2[Val] )&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Oct 2022 05:07:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/SUMIFS-in-DAX-without-relationship/m-p/2848076#M91188</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-10-18T05:07:37Z</dc:date>
    </item>
  </channel>
</rss>

