<?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: Nested IF statement List Box in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Nested-IF-statement-List-Box/m-p/1068260#M925004</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be try this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=Aggr(Only({1}If(RangeAvg(SepRound, OctRound, NovRound, DecRound, JanRound, FebRound) &amp;lt;= 500, 'Small',&lt;/P&gt;&lt;P&gt;&amp;nbsp; If(RangeAvg(SepRound, OctRound, NovRound, DecRound, JanRound, FebRound) &amp;lt;= 12000, 'Middle', 'Large'))),[Internal ID],Customer)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 06 Apr 2016 15:06:39 GMT</pubDate>
    <dc:creator>MK_QSL</dc:creator>
    <dc:date>2016-04-06T15:06:39Z</dc:date>
    <item>
      <title>Nested IF statement List Box</title>
      <link>https://community.qlik.com/t5/QlikView/Nested-IF-statement-List-Box/m-p/1068258#M925002</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 situation where I've a if statement which isn't filtering out the right way. It shows Small when it should be showing Middle and Middle when it should be showing Large.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;= 500 Small&lt;/P&gt;&lt;P&gt;&amp;lt;=12000 Middle&lt;/P&gt;&lt;P&gt;else Large&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please provide insights!!!!!!!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/120737_Capture.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Nested-IF-statement-List-Box/m-p/1068258#M925002</guid>
      <dc:creator />
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Nested IF statement List Box</title>
      <link>https://community.qlik.com/t5/QlikView/Nested-IF-statement-List-Box/m-p/1068259#M925003</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Arsalan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this one expression,&lt;/P&gt;&lt;P&gt;=If(YourFieldName &amp;gt; 0 and YourFieldName &amp;lt;= 500, 'Small', If(YourFieldName &amp;gt; 500 and YourFieldName &amp;lt;= 12000, 'Middle', 'Large'))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please note, you can perform aggregate function on your YourFieldName.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;Ishfaque Ahmed&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Apr 2016 15:01:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Nested-IF-statement-List-Box/m-p/1068259#M925003</guid>
      <dc:creator>engishfaque</dc:creator>
      <dc:date>2016-04-06T15:01:15Z</dc:date>
    </item>
    <item>
      <title>Re: Nested IF statement List Box</title>
      <link>https://community.qlik.com/t5/QlikView/Nested-IF-statement-List-Box/m-p/1068260#M925004</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be try this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=Aggr(Only({1}If(RangeAvg(SepRound, OctRound, NovRound, DecRound, JanRound, FebRound) &amp;lt;= 500, 'Small',&lt;/P&gt;&lt;P&gt;&amp;nbsp; If(RangeAvg(SepRound, OctRound, NovRound, DecRound, JanRound, FebRound) &amp;lt;= 12000, 'Middle', 'Large'))),[Internal ID],Customer)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Apr 2016 15:06:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Nested-IF-statement-List-Box/m-p/1068260#M925004</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2016-04-06T15:06:39Z</dc:date>
    </item>
    <item>
      <title>Re: Nested IF statement List Box</title>
      <link>https://community.qlik.com/t5/QlikView/Nested-IF-statement-List-Box/m-p/1068261#M925005</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Ishfaque you're right I think there's nothing wrong with my list box formula the formula for the categories is wrong.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/120746_Capture.PNG" style="height: 70px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It shows 132.17 as Middle even though it should be Small. I'm currently using &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=If(RangeAvg(SepRound, OctRound, NovRound, DecRound, JanRound, FebRound) &amp;lt;= 500, 'Small',&lt;/P&gt;&lt;P&gt; If(RangeAvg(SepRound, OctRound, NovRound, DecRound, JanRound, FebRound) &amp;lt;= 12000, 'Middle', 'Large'))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Apr 2016 15:08:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Nested-IF-statement-List-Box/m-p/1068261#M925005</guid>
      <dc:creator />
      <dc:date>2016-04-06T15:08:49Z</dc:date>
    </item>
    <item>
      <title>Re: Nested IF statement List Box</title>
      <link>https://community.qlik.com/t5/QlikView/Nested-IF-statement-List-Box/m-p/1068262#M925006</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;!RangeAvg is not an aggregation function. So it may be give wrong results.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Aggr(Only({1}If((SepRound+OctRound+NovRound+DecRound+JanRound+FebRound)/6 &amp;lt;= 500, 'Small',&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; If((SepRound+OctRound+NovRound+DecRound+JanRound+FebRound)/6 &amp;lt;= 12000, 'Middle', 'Large'))),[Internal ID],Customer)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please find the attached qvw file.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Apr 2016 15:08:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Nested-IF-statement-List-Box/m-p/1068262#M925006</guid>
      <dc:creator />
      <dc:date>2016-04-06T15:08:49Z</dc:date>
    </item>
    <item>
      <title>Re: Nested IF statement List Box</title>
      <link>https://community.qlik.com/t5/QlikView/Nested-IF-statement-List-Box/m-p/1068263#M925007</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Change your Category expression in Table as below&lt;/P&gt;&lt;P&gt;IF(RangeAvg(Sum(SepRound),Sum(OctRound),Sum(NovRound),Sum(DecRound),Sum(JanRound),Sum(FebRound)) &amp;lt;= 500, 'Small',&lt;/P&gt;&lt;P&gt;IF(RangeAvg(Sum(SepRound),Sum(OctRound),Sum(NovRound),Sum(DecRound),Sum(JanRound),Sum(FebRound)) &amp;lt;= 12000, 'Middle','Large'))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Apr 2016 15:10:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Nested-IF-statement-List-Box/m-p/1068263#M925007</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2016-04-06T15:10:36Z</dc:date>
    </item>
    <item>
      <title>Re: Nested IF statement List Box</title>
      <link>https://community.qlik.com/t5/QlikView/Nested-IF-statement-List-Box/m-p/1068264#M925008</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My list box formula is the right formula to be used it just filters out the Small, Middle and Large. the problem is the Categories formula in the table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Apr 2016 15:12:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Nested-IF-statement-List-Box/m-p/1068264#M925008</guid>
      <dc:creator />
      <dc:date>2016-04-06T15:12:07Z</dc:date>
    </item>
    <item>
      <title>Re: Nested IF statement List Box</title>
      <link>https://community.qlik.com/t5/QlikView/Nested-IF-statement-List-Box/m-p/1068265#M925009</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;=IF(Aggr(RangeAvg(Sum(SepRound),Sum(OctRound),Sum(NovRound),Sum(DecRound),Sum(JanRound),Sum(FebRound)),[Internal ID],Customer)&amp;lt;=500,'Small',&lt;/P&gt;&lt;P&gt;IF(Aggr(RangeAvg(Sum(SepRound),Sum(OctRound),Sum(NovRound),Sum(DecRound),Sum(JanRound),Sum(FebRound)),[Internal ID],Customer)&amp;lt;=12000,'Medium','Large'))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Apr 2016 15:16:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Nested-IF-statement-List-Box/m-p/1068265#M925009</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2016-04-06T15:16:22Z</dc:date>
    </item>
    <item>
      <title>Re: Nested IF statement List Box</title>
      <link>https://community.qlik.com/t5/QlikView/Nested-IF-statement-List-Box/m-p/1068266#M925010</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The reason is that your listbox-expression is built with a range-function directly on the fields and your chart-average expression is different from this and the range-function ignored the NULL. You could change one of them but I suggest before you adapt these listbox/expression to change your datamodel and to transform your table with&amp;nbsp; &lt;A href="https://community.qlik.com/qlik-blogpost/3628"&gt;The Crosstable Load&lt;/A&gt; and to use a master-calendar to link your period-field: &lt;A href="https://community.qlik.com/docs/DOC-8843"&gt;How to use - Master-Calendar and Date-Values&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Apr 2016 15:16:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Nested-IF-statement-List-Box/m-p/1068266#M925010</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2016-04-06T15:16:54Z</dc:date>
    </item>
    <item>
      <title>Re: Nested IF statement List Box</title>
      <link>https://community.qlik.com/t5/QlikView/Nested-IF-statement-List-Box/m-p/1068267#M925011</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I can't seem to figure this out. Can anyone provide assistance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Apr 2016 15:36:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Nested-IF-statement-List-Box/m-p/1068267#M925011</guid>
      <dc:creator />
      <dc:date>2016-04-06T15:36:57Z</dc:date>
    </item>
    <item>
      <title>Re: Nested IF statement List Box</title>
      <link>https://community.qlik.com/t5/QlikView/Nested-IF-statement-List-Box/m-p/1068268#M925012</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this may be:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;=If(RangeAvg(Sum(SepRound),Sum(OctRound),Sum(NovRound),Sum(DecRound),Sum(JanRound),Sum(FebRound)) &amp;lt;= 500, 'Small',&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; If(RangeAvg(Sum(SepRound),Sum(OctRound),Sum(NovRound),Sum(DecRound),Sum(JanRound),Sum(FebRound)) &amp;lt;= 12000, 'Middle', 'Large'))&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;IMG __jive_id="120751" alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/120751_Capture.PNG" style="height: 336px; width: 620px;" /&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Apr 2016 15:42:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Nested-IF-statement-List-Box/m-p/1068268#M925012</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-04-06T15:42:45Z</dc:date>
    </item>
    <item>
      <title>Re: Nested IF statement List Box</title>
      <link>https://community.qlik.com/t5/QlikView/Nested-IF-statement-List-Box/m-p/1068269#M925013</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your application attached with the correct expression for the Categories 661 list box also&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/120755_Capture.PNG" style="height: 331px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Apr 2016 15:47:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Nested-IF-statement-List-Box/m-p/1068269#M925013</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-04-06T15:47:34Z</dc:date>
    </item>
    <item>
      <title>Re: Nested IF statement List Box</title>
      <link>https://community.qlik.com/t5/QlikView/Nested-IF-statement-List-Box/m-p/1068270#M925014</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;may be try this..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Apr 2016 15:48:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Nested-IF-statement-List-Box/m-p/1068270#M925014</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2016-04-06T15:48:58Z</dc:date>
    </item>
    <item>
      <title>Re: Nested IF statement List Box</title>
      <link>https://community.qlik.com/t5/QlikView/Nested-IF-statement-List-Box/m-p/1068271#M925015</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Middle may be 661 and not 668. May be I could be wrong..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Apr 2016 15:52:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Nested-IF-statement-List-Box/m-p/1068271#M925015</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2016-04-06T15:52:56Z</dc:date>
    </item>
    <item>
      <title>Re: Nested IF statement List Box</title>
      <link>https://community.qlik.com/t5/QlikView/Nested-IF-statement-List-Box/m-p/1068272#M925016</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Seems like the number keeps on getting changed everytime &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Apr 2016 15:54:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Nested-IF-statement-List-Box/m-p/1068272#M925016</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-04-06T15:54:14Z</dc:date>
    </item>
    <item>
      <title>Re: Nested IF statement List Box</title>
      <link>https://community.qlik.com/t5/QlikView/Nested-IF-statement-List-Box/m-p/1068273#M925017</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Got it, it seems to be driven by an expression &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt; I get 661 still. Is 661 for Middle incorrect?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Apr 2016 15:57:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Nested-IF-statement-List-Box/m-p/1068273#M925017</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-04-06T15:57:13Z</dc:date>
    </item>
    <item>
      <title>Re: Nested IF statement List Box</title>
      <link>https://community.qlik.com/t5/QlikView/Nested-IF-statement-List-Box/m-p/1068274#M925018</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;661 should be correct as per my view. Have you consider Customer as well in listbox aggr?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Apr 2016 16:06:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Nested-IF-statement-List-Box/m-p/1068274#M925018</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2016-04-06T16:06:22Z</dc:date>
    </item>
    <item>
      <title>Re: Nested IF statement List Box</title>
      <link>https://community.qlik.com/t5/QlikView/Nested-IF-statement-List-Box/m-p/1068275#M925019</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I did not, but I think I should because that is one of the dimensions on the chart, right?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Apr 2016 16:07:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Nested-IF-statement-List-Box/m-p/1068275#M925019</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-04-06T16:07:56Z</dc:date>
    </item>
    <item>
      <title>Re: Nested IF statement List Box</title>
      <link>https://community.qlik.com/t5/QlikView/Nested-IF-statement-List-Box/m-p/1068276#M925020</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I guess if Internal ID is unique, we might not need customer.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Apr 2016 16:08:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Nested-IF-statement-List-Box/m-p/1068276#M925020</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-04-06T16:08:26Z</dc:date>
    </item>
    <item>
      <title>Re: Nested IF statement List Box</title>
      <link>https://community.qlik.com/t5/QlikView/Nested-IF-statement-List-Box/m-p/1068277#M925021</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for all your help guys, remarkable teamwork!!!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Apr 2016 16:11:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Nested-IF-statement-List-Box/m-p/1068277#M925021</guid>
      <dc:creator />
      <dc:date>2016-04-06T16:11:19Z</dc:date>
    </item>
  </channel>
</rss>

