<?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: Need help with Load/SQL script in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Loading-records-with-the-maximum-value-only/m-p/382965#M1166691</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, if not in need of colour/supplier you could reduce to:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MainTable:&lt;/P&gt;&lt;P&gt;LOAD&lt;BR /&gt;&amp;nbsp; Item,&lt;BR /&gt;&amp;nbsp; Max(Price) as MaxPrice&lt;BR /&gt;Resident ITEMS Group by Item;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Drop Table ITEMS;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;Regards, Sander&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 01 Sep 2012 12:01:08 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2012-09-01T12:01:08Z</dc:date>
    <item>
      <title>Loading records with the maximum value only</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-records-with-the-maximum-value-only/m-p/382961#M1166687</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm having issues with my QlikView script.&amp;nbsp; I have no SQL expereince and am still a Qlikview novice and hence my question may seem basic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I try to run the following script I keep getting an error that says Quantity "is invalid in the select list because it is not contained in either an aggregate function or the GROUP BY clause".&amp;nbsp; Could someone please explain what I am missing, or point me in the right direction?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My Script:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;ItemCode,&lt;/P&gt;&lt;P&gt;warehouse,&lt;/P&gt;&lt;P&gt;transsubtype,&lt;/P&gt;&lt;P&gt;freefield1,&lt;/P&gt;&lt;P&gt;Quantity,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; If(transsubtype='B' and Checked = '1' and bud_vers = 'MRP' and BlockItem='0', Quantity,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(transsubtype='H' and Checked = '1' and bud_vers = 'MRP' and BlockItem='0' and freefield1 = 'V',Quantity,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(transsubtype='J' and Checked = '1' and bud_vers = 'MRP' and BlockItem='0' and freefield1 = 'P',Quantity, 0))) &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; AS QtyToBeDelivered,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If(transsubtype='A' and Checked = '1' and Reviewed = '1' and bud_vers = 'MRP' and BlockItem='0', Quantity, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(transsubtype='J' and Checked = '1' and Reviewed = '1' and bud_vers = 'MRP' and BlockItem='0' and freefield1 = 'B',Quantity,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(transsubtype='H' and Checked = '1' and Reviewed = '1' and bud_vers = 'MRP' and BlockItem='0' and freefield1 = 'P',Quantity, 0))) &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; AS QtyToBeReceived,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GL_Acct;&lt;/P&gt;&lt;P&gt;SQL SELECT ItemCode, warehouse, transsubtype, freefield1, Quantity, Checked, bud_vers, BlockItem, GL_Acct&lt;/P&gt;&lt;P&gt;FROM dbo.TransactionTable &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; GROUP BY warehouse, ItemCode, transsubtype, freefield1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks in advance&lt;/P&gt;&lt;P&gt;C&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Aug 2012 10:38:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-records-with-the-maximum-value-only/m-p/382961#M1166687</guid>
      <dc:creator />
      <dc:date>2012-08-31T10:38:29Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with Load/SQL script</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-records-with-the-maximum-value-only/m-p/382962#M1166688</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you need to do either:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;only(Quantity),&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sum(Quantity), &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GROUP BY warehouse, ItemCode, transsubtype, freefield1, &lt;STRONG&gt;Quantity&lt;/STRONG&gt; ;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Aug 2012 12:01:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-records-with-the-maximum-value-only/m-p/382962#M1166688</guid>
      <dc:creator />
      <dc:date>2012-08-31T12:01:55Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with Load/SQL script</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-records-with-the-maximum-value-only/m-p/382963#M1166689</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;and the same with &lt;STRONG&gt;GL_Acct &lt;/STRONG&gt;field&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Aug 2012 12:02:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-records-with-the-maximum-value-only/m-p/382963#M1166689</guid>
      <dc:creator />
      <dc:date>2012-08-31T12:02:51Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with Load/SQL script</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-records-with-the-maximum-value-only/m-p/382964#M1166690</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Pari Pari,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you don't mind I want to take this right back to a basic example; how would I get a table with only 3 records for each of the items with only the highest price for that item?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ITEMS:&lt;/P&gt;&lt;P&gt;Load * inline [&lt;/P&gt;&lt;P&gt;Item, Colour, Supplier, Price&lt;/P&gt;&lt;P&gt;001, Red, ABC, 0.25&lt;/P&gt;&lt;P&gt;001, Blue, BCD, 0.30&lt;/P&gt;&lt;P&gt;001, Green, ASD, 0.15&lt;/P&gt;&lt;P&gt;002, Yellow, ABC, 0.48&lt;/P&gt;&lt;P&gt;002, Blue, DFG 0.37&lt;/P&gt;&lt;P&gt;002, Orange, SDE, 0.50&lt;/P&gt;&lt;P&gt;003, Red, ABC, 1.05&lt;/P&gt;&lt;P&gt;003, Yellow, SDF, 0.98&lt;/P&gt;&lt;P&gt;003, Blue, BCD, 1.05];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MainTable:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Item,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Colour,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Supplier,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;MAX(Price) as MaxPrice &lt;/P&gt;&lt;P&gt;Resident ITEMS Order by Item;&lt;/P&gt;&lt;P&gt;DROP Table ITEMS;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Aug 2012 14:31:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-records-with-the-maximum-value-only/m-p/382964#M1166690</guid>
      <dc:creator />
      <dc:date>2012-08-31T14:31:57Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with Load/SQL script</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-records-with-the-maximum-value-only/m-p/382965#M1166691</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, if not in need of colour/supplier you could reduce to:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MainTable:&lt;/P&gt;&lt;P&gt;LOAD&lt;BR /&gt;&amp;nbsp; Item,&lt;BR /&gt;&amp;nbsp; Max(Price) as MaxPrice&lt;BR /&gt;Resident ITEMS Group by Item;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Drop Table ITEMS;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;Regards, Sander&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 01 Sep 2012 12:01:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-records-with-the-maximum-value-only/m-p/382965#M1166691</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-09-01T12:01:08Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with Load/SQL script</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-records-with-the-maximum-value-only/m-p/382966#M1166692</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In first question, you are grouping by 4 fields, and reading a total of 9 fields. Always keep in mind, that when you use Group By, the rest of the fields of you are reading and not grouping must have an expression, some operation that you will make with the values of these fields. For example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table:&lt;/P&gt;&lt;P&gt;Load * Inline[&lt;/P&gt;&lt;P&gt;a&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ,b&lt;/P&gt;&lt;P&gt;1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ,2&lt;/P&gt;&lt;P&gt;1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ,5&lt;/P&gt;&lt;P&gt;2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ,3];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Aux:&lt;/P&gt;&lt;P&gt;Load &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; a,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sum(b)&lt;/P&gt;&lt;P&gt;resident Table&lt;/P&gt;&lt;P&gt;group by a;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You will get the sum of the b field, for each value of a. In your example, why do you group? You want the sum of quantity for each combination of every value of the other fields? Try with sum(quantity) instead of quantity in SQL Select sentence. So, I think you need resolve the rest of the fields that you are reading in SQL Select sentence and not grouping or making an expression with them.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In second place, the script for the highest price per item should be:&lt;/P&gt;&lt;P style="background-color: #eef4f9; font-size: 12px; color: #636363; font-family: Arial;"&gt;ITEMS:&lt;/P&gt;&lt;P style="background-color: #eef4f9; font-size: 12px; color: #636363; font-family: Arial;"&gt;Load * inline [&lt;/P&gt;&lt;P style="background-color: #eef4f9; font-size: 12px; color: #636363; font-family: Arial;"&gt;Item, Colour, Supplier, Price&lt;/P&gt;&lt;P style="background-color: #eef4f9; font-size: 12px; color: #636363; font-family: Arial;"&gt;001, Red, ABC, 0.25&lt;/P&gt;&lt;P style="background-color: #eef4f9; font-size: 12px; color: #636363; font-family: Arial;"&gt;001, Blue, BCD, 0.30&lt;/P&gt;&lt;P style="background-color: #eef4f9; font-size: 12px; color: #636363; font-family: Arial;"&gt;001, Green, ASD, 0.15&lt;/P&gt;&lt;P style="background-color: #eef4f9; font-size: 12px; color: #636363; font-family: Arial;"&gt;002, Yellow, ABC, 0.48&lt;/P&gt;&lt;P style="background-color: #eef4f9; font-size: 12px; color: #636363; font-family: Arial;"&gt;002, Blue, DFG 0.37&lt;/P&gt;&lt;P style="background-color: #eef4f9; font-size: 12px; color: #636363; font-family: Arial;"&gt;002, Orange, SDE, 0.50&lt;/P&gt;&lt;P style="background-color: #eef4f9; font-size: 12px; color: #636363; font-family: Arial;"&gt;003, Red, ABC, 1.05&lt;/P&gt;&lt;P style="background-color: #eef4f9; font-size: 12px; color: #636363; font-family: Arial;"&gt;003, Yellow, SDF, 0.98&lt;/P&gt;&lt;P style="background-color: #eef4f9; font-size: 12px; color: #636363; font-family: Arial;"&gt;003, Blue, BCD, 1.05];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #eef4f9; font-size: 12px; color: #636363; font-family: Arial;"&gt;NoConcatenate&lt;/P&gt;&lt;P style="background-color: #eef4f9; font-size: 12px; color: #636363; font-family: Arial;"&gt;MainTable:&lt;/P&gt;&lt;P style="background-color: #eef4f9; font-size: 12px; color: #636363; font-family: Arial;"&gt;LOAD&lt;/P&gt;&lt;P style="background-color: #eef4f9; font-size: 12px; color: #636363; font-family: Arial;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Item,&lt;/P&gt;&lt;P style="background-color: #eef4f9; font-size: 12px; color: #636363; font-family: Arial;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MAX(Price) as MaxPrice&lt;/P&gt;&lt;P style="background-color: #eef4f9; font-size: 12px; color: #636363; font-family: Arial;"&gt;Resident ITEMS Order by Item&lt;/P&gt;&lt;P style="background-color: #eef4f9; font-size: 12px; color: #636363; font-family: Arial;"&gt;Group By Item;&lt;/P&gt;&lt;P style="background-color: #eef4f9; font-size: 12px; color: #636363; font-family: Arial;"&gt;Left Join&lt;/P&gt;&lt;P style="background-color: #eef4f9; font-size: 12px; color: #636363; font-family: Arial;"&gt;LOAD&lt;/P&gt;&lt;P style="background-color: #eef4f9; font-size: 12px; color: #636363; font-family: Arial;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Item,&lt;/P&gt;&lt;P style="background-color: #eef4f9; font-size: 12px; color: #636363; font-family: Arial;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Price as MaxPrice,&lt;/P&gt;&lt;P style="background-color: #eef4f9; font-size: 12px; color: #636363; font-family: Arial;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Colour,&lt;/P&gt;&lt;P style="background-color: #eef4f9; font-size: 12px; color: #636363; font-family: Arial;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Supplier&lt;/P&gt;&lt;P style="background-color: #eef4f9; font-size: 12px; color: #636363; font-family: Arial;"&gt;Resident ITEMS;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #eef4f9; font-size: 12px; color: #636363; font-family: Arial;"&gt;DROP Table ITEMS;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Like this way, you group the ITEMS table by item, then calculate the max value for each item. Afterwards, you join to that item with that price, the respective Colour and supplier.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 01 Sep 2012 14:51:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-records-with-the-maximum-value-only/m-p/382966#M1166692</guid>
      <dc:creator>sebastiandperei</dc:creator>
      <dc:date>2012-09-01T14:51:00Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with Load/SQL script</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-records-with-the-maximum-value-only/m-p/382967#M1166693</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sebastian, indeed the way to do it. Thx too!&lt;/P&gt;&lt;P&gt;Ps. taking that "Order by item" was to be left out.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 01 Sep 2012 15:18:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-records-with-the-maximum-value-only/m-p/382967#M1166693</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-09-01T15:18:58Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with Load/SQL script</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-records-with-the-maximum-value-only/m-p/382968#M1166694</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sander,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I keep "Order by Item" because i think that cchhatralia needed like this way, ordered by item.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You could left out this, of course.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 01 Sep 2012 17:31:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-records-with-the-maximum-value-only/m-p/382968#M1166694</guid>
      <dc:creator>sebastiandperei</dc:creator>
      <dc:date>2012-09-01T17:31:51Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with Load/SQL script</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-records-with-the-maximum-value-only/m-p/382969#M1166695</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sebastian, that worked a treat!&amp;nbsp; Thank you!! &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Sep 2012 08:17:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-records-with-the-maximum-value-only/m-p/382969#M1166695</guid>
      <dc:creator />
      <dc:date>2012-09-03T08:17:21Z</dc:date>
    </item>
  </channel>
</rss>

