<?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 capture dates in between start date and end date in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/capture-dates-in-between-start-date-and-end-date/m-p/275038#M1178646</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use a while statement in your load to achieve what you want, like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET DateFormat='DD.MM.YYYY';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INPUT:&lt;/P&gt;&lt;P&gt;Load * INLINE [&lt;/P&gt;&lt;P&gt;Employee Number, Absence Type, Date Start, Date End&lt;/P&gt;&lt;P&gt;100, Sick, 01.01.2012, 10.01.2012&lt;/P&gt;&lt;P&gt;100, Sick, 15.01.2012, 21.01.2012&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RESULT:&lt;/P&gt;&lt;P&gt;LOAD [Employee Number], [Absence Type],&lt;/P&gt;&lt;P&gt;Date([Date Start]+iterno()-1) as Date&lt;/P&gt;&lt;P&gt;resident INPUT while [Date Start]+IterNo()-1 &amp;lt;=[Date End];&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;drop table INPUT;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The INPUT table is just to load two sample lines. The important part is the while statement &lt;/P&gt;&lt;P&gt;&lt;EM&gt; while [Date Start]+IterNo()-1 &amp;lt;=[Date End];&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and the use of the iterno() function in the statement that defines Date field&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Date([Date Start]+iterno()-1) as Date&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps,&lt;/P&gt;&lt;P&gt;Stefan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 12 Feb 2012 13:02:33 GMT</pubDate>
    <dc:creator>swuehl</dc:creator>
    <dc:date>2012-02-12T13:02:33Z</dc:date>
    <item>
      <title>capture dates in between start date and end date</title>
      <link>https://community.qlik.com/t5/QlikView/capture-dates-in-between-start-date-and-end-date/m-p/275037#M1178645</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried looking for this but could not find a solution&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a table with the following table loaded into Qlikview&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;[Employee Number]&lt;/P&gt;&lt;P&gt;Absence Type&lt;/P&gt;&lt;P&gt;[Date Start]&lt;/P&gt;&lt;P&gt;[Date End]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I now need to recreate the table so that it adds a date column which capture all the dates an employee took a leave&lt;/P&gt;&lt;P&gt;Load &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[Employee Number]&lt;/P&gt;&lt;P&gt;Absence Type&lt;/P&gt;&lt;P&gt;Date&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Figured I need to loop in order to do this.&amp;nbsp; In programming world the logic would be&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;load &lt;/P&gt;&lt;P&gt;$vDifference = [Date End] - [Date Start]&lt;/P&gt;&lt;P&gt;[Employee Number]&lt;/P&gt;&lt;P&gt;Absence Type&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For i = 0, i &amp;lt; $vDifference, i++&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[Date Start] + i as Date;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How do I do this in Qlikview?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Feb 2012 12:50:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/capture-dates-in-between-start-date-and-end-date/m-p/275037#M1178645</guid>
      <dc:creator />
      <dc:date>2012-02-12T12:50:00Z</dc:date>
    </item>
    <item>
      <title>capture dates in between start date and end date</title>
      <link>https://community.qlik.com/t5/QlikView/capture-dates-in-between-start-date-and-end-date/m-p/275038#M1178646</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use a while statement in your load to achieve what you want, like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET DateFormat='DD.MM.YYYY';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INPUT:&lt;/P&gt;&lt;P&gt;Load * INLINE [&lt;/P&gt;&lt;P&gt;Employee Number, Absence Type, Date Start, Date End&lt;/P&gt;&lt;P&gt;100, Sick, 01.01.2012, 10.01.2012&lt;/P&gt;&lt;P&gt;100, Sick, 15.01.2012, 21.01.2012&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RESULT:&lt;/P&gt;&lt;P&gt;LOAD [Employee Number], [Absence Type],&lt;/P&gt;&lt;P&gt;Date([Date Start]+iterno()-1) as Date&lt;/P&gt;&lt;P&gt;resident INPUT while [Date Start]+IterNo()-1 &amp;lt;=[Date End];&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;drop table INPUT;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The INPUT table is just to load two sample lines. The important part is the while statement &lt;/P&gt;&lt;P&gt;&lt;EM&gt; while [Date Start]+IterNo()-1 &amp;lt;=[Date End];&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and the use of the iterno() function in the statement that defines Date field&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Date([Date Start]+iterno()-1) as Date&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps,&lt;/P&gt;&lt;P&gt;Stefan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Feb 2012 13:02:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/capture-dates-in-between-start-date-and-end-date/m-p/275038#M1178646</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2012-02-12T13:02:33Z</dc:date>
    </item>
    <item>
      <title>capture dates in between start date and end date</title>
      <link>https://community.qlik.com/t5/QlikView/capture-dates-in-between-start-date-and-end-date/m-p/275039#M1178647</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; thanks it worked .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the logic doesnt make sense though, you mind explaining what interno() does ? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Feb 2012 04:25:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/capture-dates-in-between-start-date-and-end-date/m-p/275039#M1178647</guid>
      <dc:creator />
      <dc:date>2012-02-21T04:25:56Z</dc:date>
    </item>
    <item>
      <title>capture dates in between start date and end date</title>
      <link>https://community.qlik.com/t5/QlikView/capture-dates-in-between-start-date-and-end-date/m-p/275040#M1178648</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I was curius about IterNo() too (The name is not really self explaining).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The reference guide (installs with QV, but in the "Programs/QV" folder) is a good source &lt;/P&gt;&lt;P&gt;(But the examples are rather short and simple. they are often useless for more delicate problems)&lt;/P&gt;&lt;P&gt;&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;reference guide:&lt;/P&gt;&lt;P&gt;"&lt;STRONG&gt;IterNo( )&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;This function only has a meaning if used together with a while&lt;/P&gt;&lt;P&gt;clause (see the documentation on “Load” on page 317). IterNo( )&lt;/P&gt;&lt;P&gt;returns an integer indicating for which time one single record is&lt;/P&gt;&lt;P&gt;evaluated in a load statement with a while clause. The first iteration&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;has number 1."&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;BR /&gt;So, IterNo writes in the new collumn "Date". It writes Dates between [Date Start] and [Date End].&lt;/P&gt;&lt;P&gt;It does so, by writing Datens higher as [Date Start] until [Date End] is reached.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do i need to mention, that the example in the reference guide is &lt;STRONG&gt;simplified too much &lt;/STRONG&gt;to be any use for this (or any other problems besides writing some integers). There is an example, &lt;STRONG&gt;but &lt;/STRONG&gt;its in the example secion of LOAD (and only to be found by full text search).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Feb 2012 10:25:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/capture-dates-in-between-start-date-and-end-date/m-p/275040#M1178648</guid>
      <dc:creator />
      <dc:date>2012-02-22T10:25:33Z</dc:date>
    </item>
    <item>
      <title>capture dates in between start date and end date</title>
      <link>https://community.qlik.com/t5/QlikView/capture-dates-in-between-start-date-and-end-date/m-p/275041#M1178649</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think the reference guide is often a bit short on explaining, sometimes unclear or even wrong. In this case, I personally find the explanation sufficient, could be because I do have a programming background so I may implicitely add information that others may miss here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You need to look first at the while statement (from the Help):&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;A name="kanchor790"&gt;&lt;/A&gt;&lt;A name="while"&gt;&lt;/A&gt;&lt;SPAN class="Bold"&gt;while&lt;/SPAN&gt; is a clause used for stating whether a record should be repeatedly read. The same record is read as long as &lt;SPAN class="Italic"&gt;criterion&lt;/SPAN&gt; is true. In order to be useful, a &lt;SPAN class="Bold"&gt;while&lt;/SPAN&gt; clause must typically include the &lt;SPAN class="Bold"&gt;IterNo( )&lt;/SPAN&gt; function. &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You need to make yourself clear that there is an input table (coming from your source, in this example it's the INLINE table) and the output table (going into the QV data model). Your load is transforming this input table into an output table, in simple settings, it's just piping the exact same number of records, fields through, like a LOAD * from Table;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The while clause will create multiple output records from one input record, using the while condition to decide when to stop. And the only thing that changes between creating two output records from one input record is the iteration no, which you get by calling the iterno() function. In e.g. C programming language, you would create a counter variable and explicitely increment this variable in each loop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, this should explain&lt;/P&gt;&lt;P&gt;&lt;EM&gt;while [Date Start]+IterNo()-1 &amp;lt;=[Date End];&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;--&amp;gt; Create one output record for each date between Date Start and Date End (The calculation is possible since QV dates have a numerical representation, the integer part is counting day since a fixed starting point in time, like Excel or other systems do also, for example 01.01.2012 has a numerical representation of 40909, 10.01.2012 of 40918). I need to subtract 1 since iterno() starts with 1 for the first created output record, but I want to get at least one record if Date Start and Date End are the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If this is all I do, I would create just duplicate output records created from my input record. So I can use the iterno() another time to actually change each output record a bit&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Date([Date Start]+iterno()-1) as Date&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create a new Date value, starting from the Date Start read from the input table, adding one day per loop increment (again, I need to take care of the iterno() starting from 1 since I want also the Date Start to be included).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you compare the two lines of my input INLINE table with the output table after the executed load, it should make everything clear.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps,&lt;/P&gt;&lt;P&gt;Stefan&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Feb 2012 11:33:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/capture-dates-in-between-start-date-and-end-date/m-p/275041#M1178649</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2012-02-22T11:33:14Z</dc:date>
    </item>
    <item>
      <title>Re: capture dates in between start date and end date</title>
      <link>https://community.qlik.com/t5/QlikView/capture-dates-in-between-start-date-and-end-date/m-p/275042#M1178650</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This does not seem to work as intended. It works fine it you are working with 2 dates from same month. However when it dates span on multiple months. Dates creation goes from 1-100&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so if dates are from 20160701&amp;nbsp;&amp;nbsp; to 20160901 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It will create&lt;/P&gt;&lt;P&gt;20160701......20160799&lt;/P&gt;&lt;P&gt;20160801......20160899 .... 20160901&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how can you limit the script to get the counts for number of days in that month.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is what i tried:&lt;/P&gt;&lt;P&gt;// Define Stop date&lt;/P&gt;&lt;P&gt;vStopDate=date(Today()-1,'YYYYMMDD');&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;INPUT:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Load * INLINE [&lt;/P&gt;&lt;P&gt;StartDate&lt;/P&gt;&lt;P&gt;20160801&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// Create list of date from Start date to Stop date. It will create all the dates in between&lt;/P&gt;&lt;P&gt;DateList:&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;//Date([Date Start]+iterno()-1) as Date&lt;/P&gt;&lt;P&gt;Date#([StartDate]+iterno()-1,'YYYYMMDD') as DatesArray&lt;/P&gt;&lt;P&gt;resident INPUT while [StartDate]+IterNo()+1 &amp;lt;= $(vStopDate);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Results:&lt;/P&gt;&lt;P&gt;20160801 ...........20160899,20160800,20160901........20160909&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 11 Sep 2016 03:53:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/capture-dates-in-between-start-date-and-end-date/m-p/275042#M1178650</guid>
      <dc:creator>userid128223</dc:creator>
      <dc:date>2016-09-11T03:53:21Z</dc:date>
    </item>
    <item>
      <title>Re: capture dates in between start date and end date</title>
      <link>https://community.qlik.com/t5/QlikView/capture-dates-in-between-start-date-and-end-date/m-p/275043#M1178651</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your input table record values for StartDate are not correctly read in as dates&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-blogpost/2622"&gt;Get the Dates Right&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LET vStopDate=Today()-1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INPUT:&lt;/P&gt;&lt;P&gt;Load Date#([StartDate],'YYYYMMDD') as StartDate INLINE [&lt;/P&gt;&lt;P&gt;StartDate&lt;/P&gt;&lt;P&gt;20160801&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// Create list of date from Start date to Stop date. It will create all the dates in between&lt;/P&gt;&lt;P&gt;DateList:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;//Date([Date Start]+iterno()-1) as Date&lt;/P&gt;&lt;P&gt;Date([StartDate]+iterno()-1,'YYYYMMDD') as DatesArray&lt;/P&gt;&lt;P&gt;resident INPUT while [StartDate]+IterNo()+1 &amp;lt;= $(vStopDate);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 11 Sep 2016 08:20:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/capture-dates-in-between-start-date-and-end-date/m-p/275043#M1178651</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2016-09-11T08:20:08Z</dc:date>
    </item>
    <item>
      <title>Re: capture dates in between start date and end date</title>
      <link>https://community.qlik.com/t5/QlikView/capture-dates-in-between-start-date-and-end-date/m-p/275044#M1178652</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks works well but something is still not right&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;LET vStopDate=Today()-1;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Should evaluate to Sep-10&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;however it only calculates data up to Sep-08. Any idea why that would happen. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 11 Sep 2016 15:42:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/capture-dates-in-between-start-date-and-end-date/m-p/275044#M1178652</guid>
      <dc:creator>userid128223</dc:creator>
      <dc:date>2016-09-11T15:42:25Z</dc:date>
    </item>
    <item>
      <title>Re: capture dates in between start date and end date</title>
      <link>https://community.qlik.com/t5/QlikView/capture-dates-in-between-start-date-and-end-date/m-p/275045#M1178653</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this:&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;LET vStopDate=Today(&lt;SPAN style="color: #ff0000;"&gt;1&lt;/SPAN&gt;)-1; &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Today() is usually the date associated with last time you saved your application. Today(1) is true today&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 11 Sep 2016 16:04:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/capture-dates-in-between-start-date-and-end-date/m-p/275045#M1178653</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-09-11T16:04:15Z</dc:date>
    </item>
    <item>
      <title>Re: capture dates in between start date and end date</title>
      <link>https://community.qlik.com/t5/QlikView/capture-dates-in-between-start-date-and-end-date/m-p/275046#M1178654</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tried your suggestion, did not work. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 11 Sep 2016 16:18:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/capture-dates-in-between-start-date-and-end-date/m-p/275046#M1178654</guid>
      <dc:creator>userid128223</dc:creator>
      <dc:date>2016-09-11T16:18:31Z</dc:date>
    </item>
    <item>
      <title>Re: capture dates in between start date and end date</title>
      <link>https://community.qlik.com/t5/QlikView/capture-dates-in-between-start-date-and-end-date/m-p/275047#M1178655</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In addition to use Today(1), you may want to change the WHILE clause to&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DateList:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;//Date([Date Start]+iterno()-1) as Date&lt;/P&gt;&lt;P&gt;Date([StartDate]+iterno()-1,'YYYYMMDD') as DatesArray&lt;/P&gt;&lt;P&gt;resident INPUT while [StartDate]+&lt;STRONG&gt;&lt;EM&gt;IterNo()-1&lt;/EM&gt;&lt;/STRONG&gt; &amp;lt;= $(vStopDate);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 11 Sep 2016 17:23:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/capture-dates-in-between-start-date-and-end-date/m-p/275047#M1178655</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2016-09-11T17:23:52Z</dc:date>
    </item>
    <item>
      <title>Re: capture dates in between start date and end date</title>
      <link>https://community.qlik.com/t5/QlikView/capture-dates-in-between-start-date-and-end-date/m-p/275048#M1178656</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you very much... u made my day. I spent 1 day on searching this... Thanks again &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jan 2018 09:23:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/capture-dates-in-between-start-date-and-end-date/m-p/275048#M1178656</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-01-09T09:23:15Z</dc:date>
    </item>
    <item>
      <title>Re: capture dates in between start date and end date</title>
      <link>https://community.qlik.com/t5/QlikView/capture-dates-in-between-start-date-and-end-date/m-p/1722679#M1178657</link>
      <description>&lt;P&gt;Hi Stefan,&lt;/P&gt;&lt;P&gt;This works pretty great, except it the While/IterNo logic is only being applied to my samples lines from the Input table.&amp;nbsp; How can I get the logic to be applied to all of the lines in my data set?&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Fri, 26 Jun 2020 17:14:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/capture-dates-in-between-start-date-and-end-date/m-p/1722679#M1178657</guid>
      <dc:creator>ltc</dc:creator>
      <dc:date>2020-06-26T17:14:25Z</dc:date>
    </item>
    <item>
      <title>Re: capture dates in between start date and end date</title>
      <link>https://community.qlik.com/t5/QlikView/capture-dates-in-between-start-date-and-end-date/m-p/1722783#M1178658</link>
      <description>&lt;P&gt;Hi Stefan,&lt;/P&gt;&lt;P&gt;I made a separate post for my question with sample data.&amp;nbsp; If you could take a look, I would greatly appreciate it.&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/t5/Qlik-Sense-Advanced-Authoring/Need-help-with-While-InterNo/m-p/1722712#M1453" target="_blank"&gt;https://community.qlik.com/t5/Qlik-Sense-Advanced-Authoring/Need-help-with-While-InterNo/m-p/1722712#M1453&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 27 Jun 2020 03:13:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/capture-dates-in-between-start-date-and-end-date/m-p/1722783#M1178658</guid>
      <dc:creator>ltc</dc:creator>
      <dc:date>2020-06-27T03:13:38Z</dc:date>
    </item>
  </channel>
</rss>

