<?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: top 10 values in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/top-10-values/m-p/847747#M297538</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please share your sample app&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 10 Jul 2015 07:10:04 GMT</pubDate>
    <dc:creator>Kushal_Chawda</dc:creator>
    <dc:date>2015-07-10T07:10:04Z</dc:date>
    <item>
      <title>top 10 values</title>
      <link>https://community.qlik.com/t5/QlikView/top-10-values/m-p/847739#M297530</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have one fields called division it has 15 records now am using that as list box.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My requirement is i want only top 10 records from list box.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can i achieve it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jul 2015 06:28:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/top-10-values/m-p/847739#M297530</guid>
      <dc:creator>prma7799</dc:creator>
      <dc:date>2015-07-10T06:28:16Z</dc:date>
    </item>
    <item>
      <title>Re: top 10 values</title>
      <link>https://community.qlik.com/t5/QlikView/top-10-values/m-p/847740#M297531</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;Try like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=Aggr(If(FieldIndex('&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;division&lt;/SPAN&gt;', &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;division&lt;/SPAN&gt;) &amp;lt;= 10, &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;division&lt;/SPAN&gt;), &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;division&lt;/SPAN&gt;)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The best thing is arrive the top 10 fields in script and use that field in listbox&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;*,&lt;/P&gt;&lt;P&gt;If(RowNo() &amp;lt;= 10, division) AS Top10Div&lt;/P&gt;&lt;P&gt;FROM DataSource;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now use &lt;SPAN style="font-size: 13.3333330154419px;"&gt;Top10Div as listbox.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jul 2015 06:36:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/top-10-values/m-p/847740#M297531</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2015-07-10T06:36:53Z</dc:date>
    </item>
    <item>
      <title>Re: top 10 values</title>
      <link>https://community.qlik.com/t5/QlikView/top-10-values/m-p/847741#M297532</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;you can add a new object and select the type &amp;gt;listbox&amp;lt;. Then you can add formulas (as well as fields) and you can also enter some condition. I haven't found out yet exactly how to do it, but experiment a bit with that (try with the max() function, that lets you specify the top_10).&lt;/P&gt;&lt;P&gt;Alternatively, you could use a straight_table chart for that, with a dimension of '1' (not to be displayed), so only one column will be visible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HTH&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jul 2015 06:37:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/top-10-values/m-p/847741#M297532</guid>
      <dc:creator>datanibbler</dc:creator>
      <dc:date>2015-07-10T06:37:24Z</dc:date>
    </item>
    <item>
      <title>Re: top 10 values</title>
      <link>https://community.qlik.com/t5/QlikView/top-10-values/m-p/847742#M297533</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jagan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;=Aggr(If(FieldIndex('&lt;/SPAN&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;division&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;', &lt;/SPAN&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;division&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;) &amp;lt;= 10, &lt;/SPAN&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;division&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;), &lt;/SPAN&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;division&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px; line-height: 1.5em;"&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px; line-height: 1.5em;"&gt;The above statement is not working.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px; line-height: 1.5em;"&gt;Thanks&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jul 2015 06:49:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/top-10-values/m-p/847742#M297533</guid>
      <dc:creator>prma7799</dc:creator>
      <dc:date>2015-07-10T06:49:35Z</dc:date>
    </item>
    <item>
      <title>Re: top 10 values</title>
      <link>https://community.qlik.com/t5/QlikView/top-10-values/m-p/847743#M297534</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what is logic to define Top 10 in list box? Is it on Sales or on some amount? If it is so you can do something like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In listbox properties , in drop down select expression and use below expression&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=aggr(if( rank(sum(Amount),4)&amp;lt;=10,Division), Division)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please find the attached&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jul 2015 06:50:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/top-10-values/m-p/847743#M297534</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2015-07-10T06:50:25Z</dc:date>
    </item>
    <item>
      <title>Re: top 10 values</title>
      <link>https://community.qlik.com/t5/QlikView/top-10-values/m-p/847744#M297535</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kush,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you explain me below statement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=aggr(if( rank(sum(division),4)&amp;lt;=10,Division), Division)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jul 2015 06:59:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/top-10-values/m-p/847744#M297535</guid>
      <dc:creator>prma7799</dc:creator>
      <dc:date>2015-07-10T06:59:37Z</dc:date>
    </item>
    <item>
      <title>Re: top 10 values</title>
      <link>https://community.qlik.com/t5/QlikView/top-10-values/m-p/847745#M297536</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kush,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Very sorry I used your expression but value is not coming.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PFA in that i want red mark first top 10.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jul 2015 07:07:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/top-10-values/m-p/847745#M297536</guid>
      <dc:creator>prma7799</dc:creator>
      <dc:date>2015-07-10T07:07:26Z</dc:date>
    </item>
    <item>
      <title>Re: top 10 values</title>
      <link>https://community.qlik.com/t5/QlikView/top-10-values/m-p/847746#M297537</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rank function is checking the Top 10 Values by Division using R&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;ank(sum(Value),4)&amp;lt;=10, and assigning the Division name (&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;if( rank(sum(Value),4)&amp;lt;=10,&lt;STRONG&gt;Division&lt;/STRONG&gt;)&lt;/SPAN&gt;)by aggregating the values by division which is whole statement&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jul 2015 07:09:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/top-10-values/m-p/847746#M297537</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2015-07-10T07:09:08Z</dc:date>
    </item>
    <item>
      <title>Re: top 10 values</title>
      <link>https://community.qlik.com/t5/QlikView/top-10-values/m-p/847747#M297538</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please share your sample app&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jul 2015 07:10:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/top-10-values/m-p/847747#M297538</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2015-07-10T07:10:04Z</dc:date>
    </item>
    <item>
      <title>Re: top 10 values</title>
      <link>https://community.qlik.com/t5/QlikView/top-10-values/m-p/847748#M297539</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;PFA.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jul 2015 07:14:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/top-10-values/m-p/847748#M297539</guid>
      <dc:creator>prma7799</dc:creator>
      <dc:date>2015-07-10T07:14:46Z</dc:date>
    </item>
    <item>
      <title>Re: top 10 values</title>
      <link>https://community.qlik.com/t5/QlikView/top-10-values/m-p/847749#M297540</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There is no Value field to do the sum..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jul 2015 07:24:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/top-10-values/m-p/847749#M297540</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2015-07-10T07:24:02Z</dc:date>
    </item>
    <item>
      <title>Re: top 10 values</title>
      <link>https://community.qlik.com/t5/QlikView/top-10-values/m-p/847750#M297541</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes this is only dimension value I did sorting on below expression then i will get all top division .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUM({$&amp;lt;FiscalYear={$(=max(FiscalYear))}&amp;gt;}[Gross Sales Amount])&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jul 2015 07:38:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/top-10-values/m-p/847750#M297541</guid>
      <dc:creator>prma7799</dc:creator>
      <dc:date>2015-07-10T07:38:15Z</dc:date>
    </item>
    <item>
      <title>Re: top 10 values</title>
      <link>https://community.qlik.com/t5/QlikView/top-10-values/m-p/847751#M297542</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Try,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;=aggr(if( rank(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;SUM({$&amp;lt;FiscalYear={$(=max(FiscalYear))}&amp;gt;}[Gross Sales Amount])&lt;/SPAN&gt;,4)&amp;lt;=10,Division), Division)&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jul 2015 07:42:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/top-10-values/m-p/847751#M297542</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2015-07-10T07:42:13Z</dc:date>
    </item>
    <item>
      <title>Re: top 10 values</title>
      <link>https://community.qlik.com/t5/QlikView/top-10-values/m-p/847752#M297543</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good Job Friend.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is working fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you add me in your Friend list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jul 2015 07:48:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/top-10-values/m-p/847752#M297543</guid>
      <dc:creator>prma7799</dc:creator>
      <dc:date>2015-07-10T07:48:35Z</dc:date>
    </item>
    <item>
      <title>Re: top 10 values</title>
      <link>https://community.qlik.com/t5/QlikView/top-10-values/m-p/847753#M297544</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Kush,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't quite understand either. I know what aggr() does that IF() statement probably returns a NULL value if a Division is NOT among the top 10, so there's nothing to aggregate and it is not shown.&lt;/P&gt;&lt;P&gt;&amp;lt;=&amp;gt; What I don't understand is, where does that value 4 come from? From the brackets, it seems to be a parameter to rank() - but we are looking for the 10th highest value, not the 4th highest?&lt;/P&gt;&lt;P&gt;Can you please explain where that comes in?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DataNibbler&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;P.S.: Ah, I see - please just correct me if I got it wrong - the rank() returns - well, the rank of a division rgd. the sum of their sales - the 4 is just the &amp;gt;modus&amp;lt; and tells QlikView what to do in case that two divisions have the exact same sum of Sales - then the first line in the table with this rank would get this rank, the next one would get the next rank and all subsequent ranks would be increased by 1. So this isn't absolutely necessary, but it can be helpful to avoid confusing results, depending on the data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jul 2015 07:49:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/top-10-values/m-p/847753#M297544</guid>
      <dc:creator>datanibbler</dc:creator>
      <dc:date>2015-07-10T07:49:05Z</dc:date>
    </item>
    <item>
      <title>Re: top 10 values</title>
      <link>https://community.qlik.com/t5/QlikView/top-10-values/m-p/847754#M297545</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi DataNibbler,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As we are aggregating the Values based on Division there will be a rare case where Value is not available &lt;STRONG&gt;for any of the Division.&lt;/STRONG&gt;In this case you are correct ,it will not display anything.&lt;/P&gt;&lt;P&gt;But if value is available for Any one of the Division it will display the Division in listbox only if aggregate function is used. I have used 4 in Rank to display Lowest rank on first row, then incremented by one for each row.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jul 2015 10:50:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/top-10-values/m-p/847754#M297545</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2015-07-10T10:50:34Z</dc:date>
    </item>
  </channel>
</rss>

