<?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 IterNo +1and -1 in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/IterNo-1and-1/m-p/623661#M1100515</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;Could anyone explain me what each of the below statements does? especially the functionality of +1 and -1 in below statements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. While IterNo() &amp;lt;= ToDate - FromDate +1;&lt;/P&gt;&lt;P&gt;2. While IterNo() &amp;lt;= ToDate - FromDate -1;&lt;/P&gt;&lt;P&gt;3. Date($(vDateMin) + RowNo() -1) AS TempDate &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Suraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 10 Apr 2014 13:06:20 GMT</pubDate>
    <dc:creator>surajap123</dc:creator>
    <dc:date>2014-04-10T13:06:20Z</dc:date>
    <item>
      <title>IterNo +1and -1</title>
      <link>https://community.qlik.com/t5/QlikView/IterNo-1and-1/m-p/623661#M1100515</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;Could anyone explain me what each of the below statements does? especially the functionality of +1 and -1 in below statements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. While IterNo() &amp;lt;= ToDate - FromDate +1;&lt;/P&gt;&lt;P&gt;2. While IterNo() &amp;lt;= ToDate - FromDate -1;&lt;/P&gt;&lt;P&gt;3. Date($(vDateMin) + RowNo() -1) AS TempDate &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Suraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Apr 2014 13:06:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/IterNo-1and-1/m-p/623661#M1100515</guid>
      <dc:creator>surajap123</dc:creator>
      <dc:date>2014-04-10T13:06:20Z</dc:date>
    </item>
    <item>
      <title>Re: IterNo +1and -1</title>
      <link>https://community.qlik.com/t5/QlikView/IterNo-1and-1/m-p/623662#M1100516</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;They are the conditional loops&amp;nbsp; until they satisfy the condition they run the loop of statements. This is the function use with while clause and it returns integer values and literate with + 1 value. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In first Iterno() satisfy the condition until &amp;lt;= it runs the loop same in third&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and in last on with rowno() the dates are created by increment one value with &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;$(vDateMin)&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Apr 2014 13:08:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/IterNo-1and-1/m-p/623662#M1100516</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2014-04-10T13:08:56Z</dc:date>
    </item>
    <item>
      <title>Re: IterNo +1and -1</title>
      <link>https://community.qlik.com/t5/QlikView/IterNo-1and-1/m-p/623663#M1100517</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;IterNo() = Iteration Number (let's put as is)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So While and IterNo() create a loop inside the load statement in other programming languages you need to write a for... next loop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suppose you want to make a calendar table beginning 1/1/2014 = YourDate, to 15/1/2014.&amp;nbsp; In this case you need to load your table as follows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load YourDate + IterNo() - 1&lt;/P&gt;&lt;P&gt;Autogenerate&lt;/P&gt;&lt;P&gt;While IterNo() &amp;lt;= 15/1/2014 - YourDate +1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The first time IterNo() = 1, is the first iteration, so YourDate=1/1/2014 + 1 - 1, that means you begin this date, if you don't subtracts 1 your calendar begin 1/2/2014.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And in the while sentence, you need to control how many days your are generating: 15/1/2014 - 1/1/2014 = 14 days, but you need 15, so you need add 1 day more.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All above plus 1, minus 1 your can drop off, if you before begin said&lt;/P&gt;&lt;P&gt;Let YourDate = 1/1/2014 - 1 // in this case Your date is equal to 31/12/2013;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load YourDate + IterNo()&lt;/P&gt;&lt;P&gt;Autogenerate&lt;/P&gt;&lt;P&gt;While IterNo() &amp;lt;= 15/1/2014 - YourDate;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this explain...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Apr 2014 13:38:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/IterNo-1and-1/m-p/623663#M1100517</guid>
      <dc:creator>jolivares</dc:creator>
      <dc:date>2014-04-10T13:38:20Z</dc:date>
    </item>
    <item>
      <title>Re: IterNo +1and -1</title>
      <link>https://community.qlik.com/t5/QlikView/IterNo-1and-1/m-p/623664#M1100518</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Consider that &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FromDate = Today and &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ToDate = 15/04/2014&lt;/STRONG&gt;&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: 12.800000190734863px;"&gt;1) While IterNo() &amp;lt;= ToDate - FromDate +1;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;The above Iteration will run until condition on right side of &amp;lt;= will get satisfied&lt;/P&gt;&lt;P&gt;i.e 6 times&lt;/P&gt;&lt;P&gt;QlikView stores date as Number format...&lt;/P&gt;&lt;P&gt;Try NUM(ToDate) in Text Box.. it will give you 41744&lt;/P&gt;&lt;P&gt;NUM(FromDate) =&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 41739&lt;/P&gt;&lt;P&gt;So ToDate - FromDate = 41744 - 41739 = 5&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: 12.800000190734863px;"&gt;2) While IterNo() &amp;lt;= ToDate - FromDate -1;&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: 12.800000190734863px;"&gt;I think you can now understand from above example&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: 12.800000190734863px;"&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: 12.800000190734863px;"&gt;3) &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12.800000190734863px;"&gt;Date($(vDateMin) + RowNo() -1) AS TempDate&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 12.800000190734863px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;This is basically used in creating master calender TempDate between Min and Max Date range&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 12.800000190734863px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Here vDateMin is a variable&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: 12.800000190734863px;"&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: 12.800000190734863px;"&gt;&lt;STRONG&gt;FOR 1st ROW or First Iteration&lt;/STRONG&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: 12.800000190734863px;"&gt;$(vDateMin) + RowNo() - 1 &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: 12.800000190734863px;"&gt;=&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12.800000190734863px;"&gt;$(vDateMin) + 1 - 1&lt;/SPAN&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: 12.800000190734863px;"&gt;For 1st Row it will give you MinDate (i.e. $(vDateMin))&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: 12.800000190734863px;"&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: 12.800000190734863px;"&gt;&lt;STRONG&gt;FOR 2nd ROW or 2nd Iteration&lt;/STRONG&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: 12.800000190734863px;"&gt;$(vDateMin) + RowNo() - 1&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: 12.800000190734863px;"&gt;=&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12.800000190734863px;"&gt;$(vDateMin) + 2 - 1&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 12.800000190734863px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;=$(vDateMin) + 1&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: 12.800000190734863px;"&gt;For 2nd Row it will give you MinDate + 1 (i.e. $(vDateMin))&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and so on...&lt;/P&gt;&lt;P&gt;The Iteration will run until $(vDateMax)-$(vDateMin) + 1 times...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will clear to you....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Apr 2014 13:46:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/IterNo-1and-1/m-p/623664#M1100518</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2014-04-10T13:46:25Z</dc:date>
    </item>
    <item>
      <title>Re: IterNo +1and -1</title>
      <link>https://community.qlik.com/t5/QlikView/IterNo-1and-1/m-p/623665#M1100519</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anand,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the information.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;In first Iterno() satisfy the condition until &amp;lt;= it runs the loop same in third&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;I pick up the first example, While IterNo() &amp;lt;=ToDate - FromDate +1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I understand that the iterno() runs the loop, but &lt;STRONG&gt;what is &amp;lt;=Todate - FromDate+1 means?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry, it it sounds basic..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Suraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Apr 2014 13:51:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/IterNo-1and-1/m-p/623665#M1100519</guid>
      <dc:creator>surajap123</dc:creator>
      <dc:date>2014-04-10T13:51:48Z</dc:date>
    </item>
    <item>
      <title>Re: IterNo +1and -1</title>
      <link>https://community.qlik.com/t5/QlikView/IterNo-1and-1/m-p/623666#M1100520</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok I explain you about the Iterno( ) how it works with a simple example earlier also i explain that the Iterno( ) function returns integer 1 and it is work with while function until the condition is not satisfy and normally this function used in the master calendar for date creation. Where we want to create a date between any range like we say from any date to any end date. Here i explain i have two dates FromDate and Todate and this dates are used as Num dates because Iterno() works on the num dates.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suppose the dates&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FromDate = 01/04/2014&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ToDate = 10/04/2014&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;1. While IterNo() &amp;lt;= ToDate - FromDate +1&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;and we convert this dates FromDate&amp;nbsp; and ToDate into number by Num function&lt;/P&gt;&lt;P&gt;Num(FromDate) = 41730&lt;/P&gt;&lt;P&gt;Num(ToDate) = 41739&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so if we see While statement and put values and at initial iterno() start from 1&lt;/P&gt;&lt;P&gt;While IterNo() &amp;lt;= ToDate - FromDate +1&lt;/P&gt;&lt;P&gt;While Iterno() &amp;lt;= 41739 - 41730 +1&lt;/P&gt;&lt;P&gt;then equation will be&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;While Iterno() &amp;lt;= 10&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;Means while loop runs 10 times until iterno() &amp;lt;= 10 while this loop runs our dates are created by adding 1 to value 41730 like &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;41731,41732......41740 and this are in num then we convert this dates into date by Date(Num(FromDate)).&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;Here we get date from 01/04/2014 to 10/04/2014&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;2.While IterNo() &amp;lt;= ToDate - FromDate -1&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;if we see equation here for while condition with the dates&lt;/P&gt;&lt;P&gt;Num(FromDate) = 41730&lt;/P&gt;&lt;P&gt;Num(ToDate) = 41739&lt;/P&gt;&lt;P&gt;Then,&lt;/P&gt;&lt;P&gt;While IterNo() &amp;lt;= ToDate - FromDate -1&lt;/P&gt;&lt;P&gt;While Iterno() &amp;lt;= 41739 - 41730 - 1&lt;/P&gt;&lt;P&gt;then equation is&lt;/P&gt;&lt;P&gt;While Iterno() &amp;lt;= 8&lt;/P&gt;&lt;P&gt;Means in this while condition loop runs 8 times and we are get 8 date values only&lt;/P&gt;&lt;P&gt;Here we get dates from 01/04/2014 to 08/04/2014&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;3.Date($(vDateMin) + RowNo() -1) AS TempDate&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;for this dates suppose Date($(vDateMin) is 01/04/2014&lt;/P&gt;&lt;P&gt;then we get the values for equation like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Date($(vDateMin) + RowNo() -1)&lt;/P&gt;&lt;P&gt;For first record&lt;/P&gt;&lt;P&gt;vDateMin + 1 - 1&amp;nbsp; = 41731&lt;/P&gt;&lt;P&gt;For Second record&lt;/P&gt;&lt;P&gt;vDateMin + 2 -1 = 41732&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and so on until loop satisfy the condition then it will stop and a field is obtain named TempDate which contain date format and date from 01/04/2014 to 08/04/2014.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Apr 2014 17:56:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/IterNo-1and-1/m-p/623666#M1100520</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2014-04-10T17:56:43Z</dc:date>
    </item>
    <item>
      <title>Re: IterNo +1and -1</title>
      <link>https://community.qlik.com/t5/QlikView/IterNo-1and-1/m-p/623667#M1100521</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry for the delay in response. I was actually trying to understand each of the response.&lt;/P&gt;&lt;P&gt;The responses are really valuable to me. Thanks a lot for spending time to explain so well.&lt;/P&gt;&lt;P&gt;Every response is helpful to me. so, sorry if I didnt give full points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers !!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Apr 2014 14:23:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/IterNo-1and-1/m-p/623667#M1100521</guid>
      <dc:creator>surajap123</dc:creator>
      <dc:date>2014-04-11T14:23:15Z</dc:date>
    </item>
  </channel>
</rss>

