<?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: If statement in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/If-statement/m-p/1369140#M614838</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&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;STRONG&gt;if( Name='Closed','Closed','&lt;/STRONG&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;STRONG&gt;Active') as FieldName&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 12 Jul 2017 08:12:26 GMT</pubDate>
    <dc:creator>ahaahaaha</dc:creator>
    <dc:date>2017-07-12T08:12:26Z</dc:date>
    <item>
      <title>If statement</title>
      <link>https://community.qlik.com/t5/QlikView/If-statement/m-p/1369137#M614835</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi There. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Im trying to write an if statement that doesnt seem to be working&lt;/P&gt;&lt;P&gt;I have a field Name&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to create a new field which defines these Names.&lt;/P&gt;&lt;P&gt;in this field I want Closed,Open and All&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tried below: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if( Name='Closed','Closed',&lt;/P&gt;&lt;P&gt;If(Name&amp;lt;&amp;gt;'Closed','Active')) as FieldName&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This works to get my closed and active steps, how do i get all in the same statement?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FYI :I have many names in this field&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank You&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Jul 2017 08:06:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/If-statement/m-p/1369137#M614835</guid>
      <dc:creator>bimanbeginner</dc:creator>
      <dc:date>2017-07-12T08:06:20Z</dc:date>
    </item>
    <item>
      <title>Re: If statement</title>
      <link>https://community.qlik.com/t5/QlikView/If-statement/m-p/1369138#M614836</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As I understood from your post,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any name having 'Closed' word, you want to declare as Closed.&lt;/P&gt;&lt;P&gt;What are the criteria for All and Active?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Jul 2017 08:10:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/If-statement/m-p/1369138#M614836</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2017-07-12T08:10:17Z</dc:date>
    </item>
    <item>
      <title>Re: If statement</title>
      <link>https://community.qlik.com/t5/QlikView/If-statement/m-p/1369139#M614837</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;If(Name = 'Closed', 'Closed', If(Name = 'Open', 'Open', 'All')) as FieldName&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Jul 2017 08:10:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/If-statement/m-p/1369139#M614837</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2017-07-12T08:10:44Z</dc:date>
    </item>
    <item>
      <title>Re: If statement</title>
      <link>https://community.qlik.com/t5/QlikView/If-statement/m-p/1369140#M614838</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&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;STRONG&gt;if( Name='Closed','Closed','&lt;/STRONG&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;STRONG&gt;Active') as FieldName&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Jul 2017 08:12:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/If-statement/m-p/1369140#M614838</guid>
      <dc:creator>ahaahaaha</dc:creator>
      <dc:date>2017-07-12T08:12:26Z</dc:date>
    </item>
    <item>
      <title>Re: If statement</title>
      <link>https://community.qlik.com/t5/QlikView/If-statement/m-p/1369141#M614839</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Everything with closed will be closed everything else is still active. &lt;/P&gt;&lt;P&gt;but the user must be able to distinguish between closed active and both by selecting one in a list box...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Jul 2017 08:13:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/If-statement/m-p/1369141#M614839</guid>
      <dc:creator>bimanbeginner</dc:creator>
      <dc:date>2017-07-12T08:13:46Z</dc:date>
    </item>
    <item>
      <title>Re: If statement</title>
      <link>https://community.qlik.com/t5/QlikView/If-statement/m-p/1369142#M614840</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There is no field defining open names... but the logic is that if it is not closed... then it is open.. or active...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Jul 2017 08:16:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/If-statement/m-p/1369142#M614840</guid>
      <dc:creator>bimanbeginner</dc:creator>
      <dc:date>2017-07-12T08:16:19Z</dc:date>
    </item>
    <item>
      <title>Re: If statement</title>
      <link>https://community.qlik.com/t5/QlikView/If-statement/m-p/1369143#M614841</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Andrey... what about all though?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Jul 2017 08:19:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/If-statement/m-p/1369143#M614841</guid>
      <dc:creator>bimanbeginner</dc:creator>
      <dc:date>2017-07-12T08:19:45Z</dc:date>
    </item>
    <item>
      <title>Re: If statement</title>
      <link>https://community.qlik.com/t5/QlikView/If-statement/m-p/1369144#M614842</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you don't have field name called Name. Then how you are calculating? May be check one funny solution with &lt;STRONG&gt;ValueList()&lt;/STRONG&gt; ?? If not i may not understand the rek &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FYI - My expression may give make sense if you have field called Name&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Jul 2017 08:22:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/If-statement/m-p/1369144#M614842</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2017-07-12T08:22:08Z</dc:date>
    </item>
    <item>
      <title>Re: If statement</title>
      <link>https://community.qlik.com/t5/QlikView/If-statement/m-p/1369145#M614843</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry i think i havent explained correctly.&lt;/P&gt;&lt;P&gt;The field Name does exist, but there is a name called closed which identifies all closed items all other items will be open hence me using &amp;lt;&amp;gt; to closed in my initial expression... There is no name = 'Open'&amp;nbsp; the logic is that if it is not closed then it is open&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Jul 2017 08:28:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/If-statement/m-p/1369145#M614843</guid>
      <dc:creator>bimanbeginner</dc:creator>
      <dc:date>2017-07-12T08:28:33Z</dc:date>
    </item>
    <item>
      <title>Re: If statement</title>
      <link>https://community.qlik.com/t5/QlikView/If-statement/m-p/1369146#M614844</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can be more specific. Better with example.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Jul 2017 08:35:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/If-statement/m-p/1369146#M614844</guid>
      <dc:creator>PrashantSangle</dc:creator>
      <dc:date>2017-07-12T08:35:42Z</dc:date>
    </item>
    <item>
      <title>Re: If statement</title>
      <link>https://community.qlik.com/t5/QlikView/If-statement/m-p/1369147#M614845</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you create one inline and explain the result set as you required. That may helpful to trigger&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Jul 2017 08:44:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/If-statement/m-p/1369147#M614845</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2017-07-12T08:44:44Z</dc:date>
    </item>
    <item>
      <title>Re: If statement</title>
      <link>https://community.qlik.com/t5/QlikView/If-statement/m-p/1369148#M614846</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It seems that you need something like generic field.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Untitled.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/169898_Untitled.png" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If so, try like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;t1:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Load * Inline [&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Status&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Closed&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;ABC&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;BCD&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Not Closed&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Opennn&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;];&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;t2:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Load&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'All' as GenericStatus,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Status&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Resident t1;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;t2:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Load&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Status as GenericStatus,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Status&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Resident t1 where Status='Closed';&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Load&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Open' as GenericStatus,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Status&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Resident t1 where Status&amp;lt;&amp;gt;'Closed';&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Jul 2017 08:46:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/If-statement/m-p/1369148#M614846</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2017-07-12T08:46:12Z</dc:date>
    </item>
    <item>
      <title>Re: If statement</title>
      <link>https://community.qlik.com/t5/QlikView/If-statement/m-p/1369149#M614847</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank You, an alternative to this is to create 3 buttons with actions on them to select those fields&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Jul 2017 08:55:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/If-statement/m-p/1369149#M614847</guid>
      <dc:creator>bimanbeginner</dc:creator>
      <dc:date>2017-07-12T08:55:45Z</dc:date>
    </item>
    <item>
      <title>Re: If statement</title>
      <link>https://community.qlik.com/t5/QlikView/If-statement/m-p/1369150#M614848</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For this specific case, since 'Open' and 'Closed' are mutually exclusive, you can reduce one load and simplify like:&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: 'courier new', courier;"&gt;t1:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Load * Inline [&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Status&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Closed&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ABC&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; BCD&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Not Closed&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Opennn&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;];&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color: #3366ff; font-family: 'courier new', courier;"&gt;t2:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; color: #3366ff;"&gt;Load&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; color: #3366ff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'All' as GenericStatus,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; color: #3366ff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Status&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; color: #3366ff;"&gt;Resident t1;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; color: #3366ff;"&gt;t2:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; color: #3366ff;"&gt;Load&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; color: #3366ff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(Status='Closed', Status, 'Open')&amp;nbsp; as GenericStatus,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; color: #3366ff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Status&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color: #3366ff; font-family: 'courier new', courier;"&gt;Resident t1;&lt;/SPAN&gt;&lt;/P&gt;

&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Jul 2017 09:07:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/If-statement/m-p/1369150#M614848</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2017-07-12T09:07:19Z</dc:date>
    </item>
  </channel>
</rss>

