<?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: Aggregate certain entries in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Aggregate-certain-entries/m-p/1695857#M725550</link>
    <description>&lt;P&gt;On your picture, the right table shows Type17 and Type23 extra.&amp;nbsp; but i would like to have them show up as TypeX and Number being 57&lt;/P&gt;</description>
    <pubDate>Wed, 22 Apr 2020 17:42:47 GMT</pubDate>
    <dc:creator>MikeJohn</dc:creator>
    <dc:date>2020-04-22T17:42:47Z</dc:date>
    <item>
      <title>Aggregate certain entries</title>
      <link>https://community.qlik.com/t5/QlikView/Aggregate-certain-entries/m-p/1695751#M725542</link>
      <description>&lt;P&gt;I have a table that has many columns. one of them is called "Type" and another "Number".&lt;/P&gt;&lt;P&gt;E.g.&lt;/P&gt;&lt;P&gt;ID,FieldA,FieldB,Type,Number&lt;/P&gt;&lt;P&gt;1,A,B,Type1,17&lt;/P&gt;&lt;P&gt;2,C,D,Type2,30&lt;/P&gt;&lt;P&gt;3,A,D,Type1,12&lt;/P&gt;&lt;P&gt;4,B,C,Type2,45&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There are like 100 different type entries. And after import i can actually choose Type17 and than i get the numbers for Type 17.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like to aggregate certain types to a new Entry in Types. (Like if i would multi select them)&lt;/P&gt;&lt;P&gt;For example&lt;/P&gt;&lt;P&gt;TypeX = Type 17+ Type23+Type45&lt;/P&gt;&lt;P&gt;TypeY = Type1 + Type87+Type33&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is it possible to do this during loading and "add" those aggregated types at the beginning of the Type selection field? So it would like like this&lt;/P&gt;&lt;P&gt;TypeX,&lt;/P&gt;&lt;P&gt;Typey,&lt;/P&gt;&lt;P&gt;Type1&lt;/P&gt;&lt;P&gt;Type2&lt;/P&gt;&lt;P&gt;Type3&lt;/P&gt;&lt;P&gt;....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Basically a "shortcut" to a multi selection.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;if it is not possible in loading, can I somehow ust create a new multibox with those agregated Types?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 18:45:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Aggregate-certain-entries/m-p/1695751#M725542</guid>
      <dc:creator>MikeJohn</dc:creator>
      <dc:date>2024-11-16T18:45:09Z</dc:date>
    </item>
    <item>
      <title>Re: Aggregate certain entries</title>
      <link>https://community.qlik.com/t5/QlikView/Aggregate-certain-entries/m-p/1695754#M725543</link>
      <description>&lt;P&gt;Hi, you want to have Type17 to be selectable as a single value and also by TypeX? or Type17 will dissapear as single value and only can be selected as TypeX?&lt;/P&gt;</description>
      <pubDate>Wed, 22 Apr 2020 13:26:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Aggregate-certain-entries/m-p/1695754#M725543</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2020-04-22T13:26:03Z</dc:date>
    </item>
    <item>
      <title>Re: Aggregate certain entries</title>
      <link>https://community.qlik.com/t5/QlikView/Aggregate-certain-entries/m-p/1695757#M725544</link>
      <description>&lt;P&gt;yes i want TypeX and Type17 to be selectable. All the ortiginal entries should still be selectable&lt;/P&gt;</description>
      <pubDate>Wed, 22 Apr 2020 13:31:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Aggregate-certain-entries/m-p/1695757#M725544</guid>
      <dc:creator>MikeJohn</dc:creator>
      <dc:date>2020-04-22T13:31:15Z</dc:date>
    </item>
    <item>
      <title>Re: Aggregate certain entries</title>
      <link>https://community.qlik.com/t5/QlikView/Aggregate-certain-entries/m-p/1695761#M725545</link>
      <description>&lt;P&gt;To avoid duplicates you can use another table wich creates the different relations between types and aggregations, i made a sample script to show how it can be done:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;SET MatchTypeX = 'Type17','Type23';
SET MatchTypeY = 'Type1','Type87';

DataOrig:
LOAD * Inline [
ID,FieldA,FieldB,Type,Number
1,A,B,Type1,17
2,C,D,Type2,30
3,A,D,Type17,12
4,B,C,Type23,45
5,A,C,Type87,87
];

TypeSelector:
LOAD
	Type,
	SubField(TypeSelector, ',') 		as TypeSelector
;
LOAD
	FieldValue('Type', RecNo()) 		as Type,
	If(Match(FieldValue('Type', RecNo()), $(MatchTypeX)), FieldValue('Type', RecNo())&amp;amp;',TypeX'
	  ,If(Match(FieldValue('Type', RecNo()), $(MatchTypeY)), FieldValue('Type', RecNo())&amp;amp;',TypeY'
	  ,FieldValue('Type', RecNo())))	as TypeSelector
AutoGenerate FieldValueCount('Type')
;&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 22 Apr 2020 13:47:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Aggregate-certain-entries/m-p/1695761#M725545</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2020-04-22T13:47:47Z</dc:date>
    </item>
    <item>
      <title>Re: Aggregate certain entries</title>
      <link>https://community.qlik.com/t5/QlikView/Aggregate-certain-entries/m-p/1695762#M725546</link>
      <description>&lt;P&gt;What if you do something like this:&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;Data:&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;LOAD * inline [&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;ID,FieldA,FieldB,%type,Number&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;1,A,B,Type1,17&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;2,C,D,Type2,30&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;3,A,D,Type1,12&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;4,B,C,Type2,45&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;];&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;TypeDim:&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;LOAD DISTINCT &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;%type ,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;%type as Type&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;Resident Data;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;Concatenate (TypeDim)&lt;BR /&gt;LOAD * inline [&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;%type, Type&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;Type1, TypeZ&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;Type2, TypeZ&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;Type1, TypeW&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;Type3, TypeW &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;];&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Apr 2020 13:53:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Aggregate-certain-entries/m-p/1695762#M725546</guid>
      <dc:creator>Vegar</dc:creator>
      <dc:date>2020-04-22T13:53:33Z</dc:date>
    </item>
    <item>
      <title>Re: Aggregate certain entries</title>
      <link>https://community.qlik.com/t5/QlikView/Aggregate-certain-entries/m-p/1695766#M725547</link>
      <description>&lt;P&gt;If that would work that would make it nice since i could change the types quite easily.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But i cant make it work. Can you help me there?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is the loading script:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Data:&lt;/P&gt;&lt;P&gt;// Dummy load so we can use concatenate below&lt;/P&gt;&lt;P&gt;LOAD 0 as dummy AutoGenerate 0;&lt;/P&gt;&lt;P&gt;Concatenate (Data)&lt;/P&gt;&lt;P&gt;LOAD&lt;BR /&gt;Type,&lt;BR /&gt;Initialen,&lt;BR /&gt;Kommentar,&lt;BR /&gt;[Number Reg.]&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;[foobar\*.xlsx]&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels);&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;TypeDim:&lt;BR /&gt;LOAD DISTINCT&lt;BR /&gt;%type ,&lt;BR /&gt;%type as Type&lt;BR /&gt;Resident Data;&lt;/P&gt;&lt;P&gt;Concatenate Type&lt;BR /&gt;LOAD * inline [&lt;BR /&gt;%type, Type&lt;BR /&gt;Incidents, TypeZ&lt;BR /&gt;Meetings, TypeZ&lt;BR /&gt;Knowledge, TypeW&lt;BR /&gt;Other, TypeW&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;DROP FIELD dummy; // Drop dummy field&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;</description>
      <pubDate>Wed, 22 Apr 2020 14:05:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Aggregate-certain-entries/m-p/1695766#M725547</guid>
      <dc:creator>MikeJohn</dc:creator>
      <dc:date>2020-04-22T14:05:38Z</dc:date>
    </item>
    <item>
      <title>Re: Aggregate certain entries</title>
      <link>https://community.qlik.com/t5/QlikView/Aggregate-certain-entries/m-p/1695777#M725548</link>
      <description>&lt;P&gt;Thank you for that code, with it i do actually get to choose TypeX and TypeY.&lt;/P&gt;&lt;P&gt;But they are not added together. They are still shown as "Type17" with the according numbers and "Type23" with the according numbers.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is it possible to just make this one new "entry" with the name "TypeX" and the numbers are added?&lt;/P&gt;</description>
      <pubDate>Wed, 22 Apr 2020 14:27:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Aggregate-certain-entries/m-p/1695777#M725548</guid>
      <dc:creator>MikeJohn</dc:creator>
      <dc:date>2020-04-22T14:27:26Z</dc:date>
    </item>
    <item>
      <title>Re: Aggregate certain entries</title>
      <link>https://community.qlik.com/t5/QlikView/Aggregate-certain-entries/m-p/1695806#M725549</link>
      <description>&lt;P&gt;I'm not sure to understand...The field with both values is&amp;nbsp;TypeSelector, have you checked the values in that field?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Captura.JPG" style="width: 466px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/32293i2C4C5C4403BD8FEA/image-size/large?v=v2&amp;amp;px=999" role="button" title="Captura.JPG" alt="Captura.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;If this is what you want you only need to change field names.&lt;/P&gt;&lt;P&gt;If it's not please post a sample of a table with the expected result.&lt;/P&gt;</description>
      <pubDate>Wed, 22 Apr 2020 15:42:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Aggregate-certain-entries/m-p/1695806#M725549</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2020-04-22T15:42:20Z</dc:date>
    </item>
    <item>
      <title>Re: Aggregate certain entries</title>
      <link>https://community.qlik.com/t5/QlikView/Aggregate-certain-entries/m-p/1695857#M725550</link>
      <description>&lt;P&gt;On your picture, the right table shows Type17 and Type23 extra.&amp;nbsp; but i would like to have them show up as TypeX and Number being 57&lt;/P&gt;</description>
      <pubDate>Wed, 22 Apr 2020 17:42:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Aggregate-certain-entries/m-p/1695857#M725550</guid>
      <dc:creator>MikeJohn</dc:creator>
      <dc:date>2020-04-22T17:42:47Z</dc:date>
    </item>
    <item>
      <title>Re: Aggregate certain entries</title>
      <link>https://community.qlik.com/t5/QlikView/Aggregate-certain-entries/m-p/1695895#M725551</link>
      <description>&lt;P&gt;I did like this in my previous example:&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;// Dummy load so we can use concatenate below&lt;BR /&gt;Data:&lt;BR /&gt;&lt;/FONT&gt;&lt;FONT face="courier new,courier" size="2"&gt;LOAD 0 as dummy AutoGenerate 0;&lt;BR /&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;Concatenate (Data)&lt;BR /&gt;&lt;/FONT&gt;&lt;FONT face="courier new,courier" size="2"&gt;LOAD&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;Type &lt;FONT color="#FF00FF"&gt;as %type&lt;/FONT&gt;,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;Initialen,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;Kommentar,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;[Number Reg.]&lt;BR /&gt;&lt;/FONT&gt;&lt;FONT face="courier new,courier" size="2"&gt;FROM&lt;BR /&gt;&lt;/FONT&gt;&lt;FONT face="courier new,courier" size="2"&gt;[foobar\*.xlsx]&amp;nbsp;&lt;/FONT&gt;&lt;FONT face="courier new,courier" size="2"&gt;(ooxml, embedded labels);&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;TypeDim:&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;LOAD DISTINCT&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;%type ,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;%type as Type&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;Resident Data;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;Concatenate Type&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;LOAD * inline [&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;%type, Type&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;Incidents, TypeZ&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;Meetings, TypeZ&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;Knowledge, TypeW&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;Other, TypeW&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" size="2"&gt;];&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" size="2"&gt;DROP FIELD dummy; // Drop dummy field&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Apr 2020 19:33:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Aggregate-certain-entries/m-p/1695895#M725551</guid>
      <dc:creator>Vegar</dc:creator>
      <dc:date>2020-04-22T19:33:04Z</dc:date>
    </item>
    <item>
      <title>Re: Aggregate certain entries</title>
      <link>https://community.qlik.com/t5/QlikView/Aggregate-certain-entries/m-p/1695979#M725552</link>
      <description>&lt;P&gt;And wich values should have&amp;nbsp; FieldA, FieldB and ID? there should be 2 rows with number 57?&lt;/P&gt;&lt;P&gt;It it's only one row you can do using TypeSelector as dimension (and you can change field names in script to the ones you want) and using Sum(Number) as expression&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Captura.JPG" style="width: 471px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/32329i2E62E4A7D0E90FDC/image-size/large?v=v2&amp;amp;px=999" role="button" title="Captura.JPG" alt="Captura.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Write in a post what's the expected result for the full table.&lt;/P&gt;</description>
      <pubDate>Thu, 23 Apr 2020 06:46:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Aggregate-certain-entries/m-p/1695979#M725552</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2020-04-23T06:46:23Z</dc:date>
    </item>
    <item>
      <title>Re: Aggregate certain entries</title>
      <link>https://community.qlik.com/t5/QlikView/Aggregate-certain-entries/m-p/1703570#M725553</link>
      <description>&lt;P&gt;If Ruben or Vegar's latest posts helped you get things working, we would appreciate it if you would return to your thread and properly close it out by using the Accept as Solution button on the post(s) that got you the information you needed to get a working solution.&amp;nbsp; I am assuming one of the last two posts on the thread helped, but I do not know which one, so I could not mark this for you...&lt;/P&gt;&lt;P&gt;Regards,&lt;BR /&gt;Brett&lt;/P&gt;</description>
      <pubDate>Tue, 19 May 2020 18:58:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Aggregate-certain-entries/m-p/1703570#M725553</guid>
      <dc:creator>Brett_Bleess</dc:creator>
      <dc:date>2020-05-19T18:58:21Z</dc:date>
    </item>
    <item>
      <title>Re: Aggregate certain entries</title>
      <link>https://community.qlik.com/t5/QlikView/Aggregate-certain-entries/m-p/1703637#M725554</link>
      <description>&lt;P&gt;One solution is, create a new Field.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;tab1:
LOAD IterNo() 					As ID
	,Pick(Ceil(6*Rand()),'A','B','C','D','E','F') As FieldA
	,Pick(Ceil(6*Rand()),'F','E','D','C','B','A') As FieldB
	,'Type'&amp;amp;Ceil(Rand()*25) 	As Type
	,Ceil(100*Rand()) 			As Number	
AutoGenerate 1
While IterNo()&amp;lt;=25;

TypeExt:
LOAD * INLINE [
    TypeExt, Type
    TypeX, Type17
    TypeX, Type23
    TypeX, Type1    
    TypeY, Type18
    TypeY, Type3
    TypeY, Type20
];

Concatenate(TypeExt)
LOAD Distinct Type, Type As TypeExt
Resident tab1;

Left Join(tab1)
LOAD * Resident TypeExt;

DROP Table TypeExt;&lt;/LI-CODE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="commQV60.PNG" style="width: 462px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/33994iFA48C93CA1390B7D/image-size/large?v=v2&amp;amp;px=999" role="button" title="commQV60.PNG" alt="commQV60.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="commQV61.PNG" style="width: 463px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/33995i5056815965E37A30/image-size/large?v=v2&amp;amp;px=999" role="button" title="commQV61.PNG" alt="commQV61.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 20 May 2020 00:57:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Aggregate-certain-entries/m-p/1703637#M725554</guid>
      <dc:creator>Saravanan_Desingh</dc:creator>
      <dc:date>2020-05-20T00:57:54Z</dc:date>
    </item>
  </channel>
</rss>

