<?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: Transforming table with many columns (dates) in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Transforming-table-with-many-columns-dates/m-p/1724663#M55173</link>
    <description>&lt;P&gt;Yikes, that is quite the data structure.&lt;BR /&gt;&lt;BR /&gt;If your data looks exactly like your sample, the method below should work.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;It is a bit of a journey, but will get your there regardless of whether new field "pairs" are added in the future.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Based on your data, I made the assumption the first field is ALWAYS the product name and the there is one row per product. (it doesn't matter what the product is called)&amp;nbsp;&lt;BR /&gt;This in relevant to the solution below.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="java"&gt;//load the date, assume each product as it's own row, assign it a number
InitalLoad:
LOAD rowno() as ProductID,
	*
FROM [lib://DataFolder/ExcelData/Community/doublecrosstab.xlsx] //&amp;lt;--the this needs to be your file
(ooxml, embedded labels, table is Sheet1);

//get the name of the first field in the orginal file
//which is the second field of the InitalLoad Table due to the ProductID column
LET vProduct = FieldName(2 ,'InitalLoad');

//create a table to associate the product name with the productID
FinalTable:
LOAD     [$(vProduct)] as Product,
		ProductID
Resident InitalLoad;

//unpivot the InitalLoad table, create a new table
CrossTabTemp:
CrossTable('Attribute', 'Value', 1)
load * 
Resident InitalLoad;

//InitalLoad table no longer needed.
Drop table InitalLoad;

/************************************************************************
Because the original file has dupilcate field names, Qlik should 
automatically append the number 1 to the duplciate date (ex. 01/07/20201)
This table filters for only those fields with more than 10 chars. (hese fields
will contain TRUE or FALSE.) it also converts them into dates
************************************************************************/
CrossTab:
NoConcatenate
Load 
	ProductID,
    Date#(Left(Attribute,10),'DD/MM/YYYY') as [Date], 
    Value as Warehouse
Resident CrossTabTemp
WHERE len(Attribute)&amp;gt;10; //&amp;lt;--the filter

//we don't need CrossTabTemp anymore
Drop Table CrossTabTemp;

//join CrossTabl into FinalTable
Left Join (FinalTable)
Load * Resident CrossTab;

//we no longer need CrossTab
Drop Table CrossTab;&lt;/LI-CODE&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;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Result:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="QlikTom_0-1593724485442.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/36861i9E5F90BD5A04B560/image-size/medium?v=v2&amp;amp;px=400" role="button" title="QlikTom_0-1593724485442.png" alt="QlikTom_0-1593724485442.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="QlikTom_1-1593724654052.png" style="width: 704px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/36862iE0E620F6E4DF6872/image-dimensions/704x244?v=v2" width="704" height="244" role="button" title="QlikTom_1-1593724654052.png" alt="QlikTom_1-1593724654052.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 02 Jul 2020 21:27:27 GMT</pubDate>
    <dc:creator>QlikTom</dc:creator>
    <dc:date>2020-07-02T21:27:27Z</dc:date>
    <item>
      <title>Transforming table with many columns (dates)</title>
      <link>https://community.qlik.com/t5/App-Development/Transforming-table-with-many-columns-dates/m-p/1724608#M55159</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;I have a problem with the table transformation in the script in Qlik.&lt;BR /&gt;I have the table (below) with the days of the month in the row and the products in the columns.&lt;/P&gt;&lt;TABLE border="1" cellspacing="0" cellpadding="0"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;01/07/2020&lt;/TD&gt;&lt;TD&gt;01/07/2020&lt;/TD&gt;&lt;TD&gt;02/07/2020&lt;/TD&gt;&lt;TD&gt;02/07/2020&lt;/TD&gt;&lt;TD&gt;03/07/2020&lt;/TD&gt;&lt;TD&gt;03/07/2020&lt;/TD&gt;&lt;TD&gt;04/07/2020&lt;/TD&gt;&lt;TD&gt;04/07/2020&lt;/TD&gt;&lt;TD&gt;...&lt;/TD&gt;&lt;TD&gt;...&lt;/TD&gt;&lt;TD&gt;31/12/2020&lt;/TD&gt;&lt;TD&gt;31/12/2020&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Product1&lt;/TD&gt;&lt;TD&gt;FALSE&lt;/TD&gt;&lt;TD&gt;Product1&lt;/TD&gt;&lt;TD&gt;TRUE&lt;/TD&gt;&lt;TD&gt;Product1&lt;/TD&gt;&lt;TD&gt;FALSE&lt;/TD&gt;&lt;TD&gt;Product1&lt;/TD&gt;&lt;TD&gt;FALSE&lt;/TD&gt;&lt;TD&gt;Product1&lt;/TD&gt;&lt;TD&gt;FALSE&lt;/TD&gt;&lt;TD&gt;Product1&lt;/TD&gt;&lt;TD&gt;TRUE&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Product2&lt;/TD&gt;&lt;TD&gt;FALSE&lt;/TD&gt;&lt;TD&gt;Product2&lt;/TD&gt;&lt;TD&gt;FALSE&lt;/TD&gt;&lt;TD&gt;Product2&lt;/TD&gt;&lt;TD&gt;FALSE&lt;/TD&gt;&lt;TD&gt;Product2&lt;/TD&gt;&lt;TD&gt;FALSE&lt;/TD&gt;&lt;TD&gt;Product2&lt;/TD&gt;&lt;TD&gt;FALSE&lt;/TD&gt;&lt;TD&gt;Product2&lt;/TD&gt;&lt;TD&gt;FALSE&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Product3&lt;/TD&gt;&lt;TD&gt;FALSE&lt;/TD&gt;&lt;TD&gt;Product3&lt;/TD&gt;&lt;TD&gt;FALSE&lt;/TD&gt;&lt;TD&gt;Product3&lt;/TD&gt;&lt;TD&gt;FALSE&lt;/TD&gt;&lt;TD&gt;Product3&lt;/TD&gt;&lt;TD&gt;FALSE&lt;/TD&gt;&lt;TD&gt;Product3&lt;/TD&gt;&lt;TD&gt;FALSE&lt;/TD&gt;&lt;TD&gt;Product3&lt;/TD&gt;&lt;TD&gt;FALSE&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Product4&lt;/TD&gt;&lt;TD&gt;TRUE&lt;/TD&gt;&lt;TD&gt;Product4&lt;/TD&gt;&lt;TD&gt;TRUE&lt;/TD&gt;&lt;TD&gt;Product4&lt;/TD&gt;&lt;TD&gt;TRUE&lt;/TD&gt;&lt;TD&gt;Product4&lt;/TD&gt;&lt;TD&gt;FALSE&lt;/TD&gt;&lt;TD&gt;Product4&lt;/TD&gt;&lt;TD&gt;FALSE&lt;/TD&gt;&lt;TD&gt;Product4&lt;/TD&gt;&lt;TD&gt;TRUE&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;BR /&gt;Such a structure cannot be analyzed.&lt;BR /&gt;I need to get the structure as below, i.e. dates, products and false / true in separate columns.&lt;/P&gt;&lt;TABLE border="1" cellspacing="0" cellpadding="0"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Date&lt;/TD&gt;&lt;TD&gt;Product Name&lt;/TD&gt;&lt;TD&gt;Warehouse&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;01/07/2020&lt;/TD&gt;&lt;TD&gt;Product1&lt;/TD&gt;&lt;TD&gt;FALSE&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;02/07/2020&lt;/TD&gt;&lt;TD&gt;Product1&lt;/TD&gt;&lt;TD&gt;TRUE&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;03/07/2020&lt;/TD&gt;&lt;TD&gt;Product1&lt;/TD&gt;&lt;TD&gt;FALSE&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;04/07/2020&lt;/TD&gt;&lt;TD&gt;Product1&lt;/TD&gt;&lt;TD&gt;FALSE&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;...&lt;/TD&gt;&lt;TD&gt;Product1&lt;/TD&gt;&lt;TD&gt;FALSE&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;31/12/2020&lt;/TD&gt;&lt;TD&gt;Product1&lt;/TD&gt;&lt;TD&gt;TRUE&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;01/07/2020&lt;/TD&gt;&lt;TD&gt;Product2&lt;/TD&gt;&lt;TD&gt;FALSE&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;02/07/2020&lt;/TD&gt;&lt;TD&gt;Product2&lt;/TD&gt;&lt;TD&gt;FALSE&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;03/07/2020&lt;/TD&gt;&lt;TD&gt;Product2&lt;/TD&gt;&lt;TD&gt;FALSE&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;04/07/2020&lt;/TD&gt;&lt;TD&gt;Product2&lt;/TD&gt;&lt;TD&gt;FALSE&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;...&lt;/TD&gt;&lt;TD&gt;Product2&lt;/TD&gt;&lt;TD&gt;FALSE&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;31/12/2020&lt;/TD&gt;&lt;TD&gt;Product2&lt;/TD&gt;&lt;TD&gt;FALSE&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;01/07/2020&lt;/TD&gt;&lt;TD&gt;Product3&lt;/TD&gt;&lt;TD&gt;FALSE&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;02/07/2020&lt;/TD&gt;&lt;TD&gt;Product3&lt;/TD&gt;&lt;TD&gt;FALSE&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;03/07/2020&lt;/TD&gt;&lt;TD&gt;Product3&lt;/TD&gt;&lt;TD&gt;FALSE&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;04/07/2020&lt;/TD&gt;&lt;TD&gt;Product3&lt;/TD&gt;&lt;TD&gt;FALSE&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;...&lt;/TD&gt;&lt;TD&gt;Product3&lt;/TD&gt;&lt;TD&gt;FALSE&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;31/12/2020&lt;/TD&gt;&lt;TD&gt;Product3&lt;/TD&gt;&lt;TD&gt;FALSE&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;01/07/2020&lt;/TD&gt;&lt;TD&gt;Product4&lt;/TD&gt;&lt;TD&gt;TRUE&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;02/07/2020&lt;/TD&gt;&lt;TD&gt;Product4&lt;/TD&gt;&lt;TD&gt;TRUE&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;03/07/2020&lt;/TD&gt;&lt;TD&gt;Product4&lt;/TD&gt;&lt;TD&gt;TRUE&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;04/07/2020&lt;/TD&gt;&lt;TD&gt;Product4&lt;/TD&gt;&lt;TD&gt;FALSE&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;...&lt;/TD&gt;&lt;TD&gt;Product4&lt;/TD&gt;&lt;TD&gt;FALSE&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;31/12/2020&lt;/TD&gt;&lt;TD&gt;Product4&lt;/TD&gt;&lt;TD&gt;TRUE&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried with a cross table but this is only a data sample and there you have to enter the name of each column.&lt;BR /&gt;Ultimately there will be as many columns as there are days in the year. 01/01/2020 - 31/12/2020 etc.&lt;/P&gt;&lt;P&gt;Can anyone help me?&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 01:59:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Transforming-table-with-many-columns-dates/m-p/1724608#M55159</guid>
      <dc:creator>alternatywny</dc:creator>
      <dc:date>2024-11-16T01:59:19Z</dc:date>
    </item>
    <item>
      <title>Re: Transforming table with many columns (dates)</title>
      <link>https://community.qlik.com/t5/App-Development/Transforming-table-with-many-columns-dates/m-p/1724645#M55169</link>
      <description>&lt;P&gt;How are you getting this table into Qlik?&amp;nbsp; I tried creating an Inline table not thinking, and it whined about column names needing to be unique.&lt;/P&gt;</description>
      <pubDate>Thu, 02 Jul 2020 19:23:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Transforming-table-with-many-columns-dates/m-p/1724645#M55169</guid>
      <dc:creator>JustinDallas</dc:creator>
      <dc:date>2020-07-02T19:23:27Z</dc:date>
    </item>
    <item>
      <title>Re: Transforming table with many columns (dates)</title>
      <link>https://community.qlik.com/t5/App-Development/Transforming-table-with-many-columns-dates/m-p/1724650#M55171</link>
      <description>&lt;P&gt;I have it in excel google spreadsheet and connect to qlik. Yes, there is a problem with not unique names. I can change names of columns (on date where is true/false) with letter or word.&lt;/P&gt;</description>
      <pubDate>Thu, 02 Jul 2020 19:59:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Transforming-table-with-many-columns-dates/m-p/1724650#M55171</guid>
      <dc:creator>alternatywny</dc:creator>
      <dc:date>2020-07-02T19:59:35Z</dc:date>
    </item>
    <item>
      <title>Re: Transforming table with many columns (dates)</title>
      <link>https://community.qlik.com/t5/App-Development/Transforming-table-with-many-columns-dates/m-p/1724663#M55173</link>
      <description>&lt;P&gt;Yikes, that is quite the data structure.&lt;BR /&gt;&lt;BR /&gt;If your data looks exactly like your sample, the method below should work.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;It is a bit of a journey, but will get your there regardless of whether new field "pairs" are added in the future.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Based on your data, I made the assumption the first field is ALWAYS the product name and the there is one row per product. (it doesn't matter what the product is called)&amp;nbsp;&lt;BR /&gt;This in relevant to the solution below.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="java"&gt;//load the date, assume each product as it's own row, assign it a number
InitalLoad:
LOAD rowno() as ProductID,
	*
FROM [lib://DataFolder/ExcelData/Community/doublecrosstab.xlsx] //&amp;lt;--the this needs to be your file
(ooxml, embedded labels, table is Sheet1);

//get the name of the first field in the orginal file
//which is the second field of the InitalLoad Table due to the ProductID column
LET vProduct = FieldName(2 ,'InitalLoad');

//create a table to associate the product name with the productID
FinalTable:
LOAD     [$(vProduct)] as Product,
		ProductID
Resident InitalLoad;

//unpivot the InitalLoad table, create a new table
CrossTabTemp:
CrossTable('Attribute', 'Value', 1)
load * 
Resident InitalLoad;

//InitalLoad table no longer needed.
Drop table InitalLoad;

/************************************************************************
Because the original file has dupilcate field names, Qlik should 
automatically append the number 1 to the duplciate date (ex. 01/07/20201)
This table filters for only those fields with more than 10 chars. (hese fields
will contain TRUE or FALSE.) it also converts them into dates
************************************************************************/
CrossTab:
NoConcatenate
Load 
	ProductID,
    Date#(Left(Attribute,10),'DD/MM/YYYY') as [Date], 
    Value as Warehouse
Resident CrossTabTemp
WHERE len(Attribute)&amp;gt;10; //&amp;lt;--the filter

//we don't need CrossTabTemp anymore
Drop Table CrossTabTemp;

//join CrossTabl into FinalTable
Left Join (FinalTable)
Load * Resident CrossTab;

//we no longer need CrossTab
Drop Table CrossTab;&lt;/LI-CODE&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;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Result:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="QlikTom_0-1593724485442.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/36861i9E5F90BD5A04B560/image-size/medium?v=v2&amp;amp;px=400" role="button" title="QlikTom_0-1593724485442.png" alt="QlikTom_0-1593724485442.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="QlikTom_1-1593724654052.png" style="width: 704px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/36862iE0E620F6E4DF6872/image-dimensions/704x244?v=v2" width="704" height="244" role="button" title="QlikTom_1-1593724654052.png" alt="QlikTom_1-1593724654052.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Jul 2020 21:27:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Transforming-table-with-many-columns-dates/m-p/1724663#M55173</guid>
      <dc:creator>QlikTom</dc:creator>
      <dc:date>2020-07-02T21:27:27Z</dc:date>
    </item>
    <item>
      <title>Re: Transforming table with many columns (dates)</title>
      <link>https://community.qlik.com/t5/App-Development/Transforming-table-with-many-columns-dates/m-p/1724681#M55174</link>
      <description>&lt;P&gt;Very nice&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/87175"&gt;@QlikTom&lt;/a&gt;&amp;nbsp;. Elegant solution.&lt;/P&gt;</description>
      <pubDate>Fri, 03 Jul 2020 01:32:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Transforming-table-with-many-columns-dates/m-p/1724681#M55174</guid>
      <dc:creator>Saravanan_Desingh</dc:creator>
      <dc:date>2020-07-03T01:32:47Z</dc:date>
    </item>
    <item>
      <title>Re: Transforming table with many columns (dates)</title>
      <link>https://community.qlik.com/t5/App-Development/Transforming-table-with-many-columns-dates/m-p/1725302#M55227</link>
      <description>&lt;P&gt;Great! It works &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Thank You &lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/87175"&gt;@QlikTom&lt;/a&gt;&amp;nbsp;!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Jul 2020 11:12:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Transforming-table-with-many-columns-dates/m-p/1725302#M55227</guid>
      <dc:creator>alternatywny</dc:creator>
      <dc:date>2020-07-06T11:12:58Z</dc:date>
    </item>
    <item>
      <title>Re: Transforming table with many columns (dates)</title>
      <link>https://community.qlik.com/t5/App-Development/Transforming-table-with-many-columns-dates/m-p/1725369#M55241</link>
      <description>&lt;P&gt;Thanks QliKTom for solving this for us!&amp;nbsp; I was at a standstill on figuring it out.&amp;nbsp; I look forward to dissecting your answer to figure out the ins-and-outs of it later today.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Jul 2020 13:17:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Transforming-table-with-many-columns-dates/m-p/1725369#M55241</guid>
      <dc:creator>JustinDallas</dc:creator>
      <dc:date>2020-07-06T13:17:39Z</dc:date>
    </item>
  </channel>
</rss>

