<?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 Date in qlikView scripting in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Date-in-qlikView-scripting/m-p/144076#M23132</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can also use IntervalMatch to link the ranges into a date table. See the QV Cookbook example "Count days in a transaction using IntervalMatch" for an example of how to do this. You can download the QV Cookbook from&lt;BR /&gt;&lt;A href="http://robwunderlich.com/Download.html"&gt;http://robwunderlich.com/Download.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 14 May 2009 14:28:49 GMT</pubDate>
    <dc:creator>rwunderlich</dc:creator>
    <dc:date>2009-05-14T14:28:49Z</dc:date>
    <item>
      <title>Date in qlikView scripting</title>
      <link>https://community.qlik.com/t5/QlikView/Date-in-qlikView-scripting/m-p/144073#M23129</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hy,&lt;/P&gt;&lt;P&gt;I want to know if it's possible to find all the day between 2 dates :&lt;/P&gt;&lt;P&gt;For example ==&amp;gt; in a table Salary number = 001, Date of Entry = 01/01/2009, Date of exit = 04/01/2009&lt;/P&gt;&lt;P&gt;I want to create a new table ==&amp;gt; 001, 01/012009, 02/01/2009, 03/01/2009,04/01/2009&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot and have fun with Qlik...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 May 2009 03:39:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-in-qlikView-scripting/m-p/144073#M23129</guid>
      <dc:creator />
      <dc:date>2009-05-14T03:39:24Z</dc:date>
    </item>
    <item>
      <title>Date in qlikView scripting</title>
      <link>https://community.qlik.com/t5/QlikView/Date-in-qlikView-scripting/m-p/144074#M23130</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can loop your salary table and add rows to a date table for each record. Like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;FOR RecordNummer = 1 TO (NoOfRows('Salary'))&lt;BR /&gt; LET vSalaryNum = Trim(FieldValue('Num', '$(RecordNummer)'));&lt;BR /&gt; LET vSalaryEntryDate = Trim(FieldValue('Date_Entry', '$(RecordNummer)'));&lt;BR /&gt; LET vSalaryExitDate = Trim(FieldValue('Date_Exit', '$(RecordNummer)'));&lt;BR /&gt;&lt;BR /&gt; SalaryDates:&lt;BR /&gt; LOAD&lt;BR /&gt; '$(vSalaryNum)' as Salary_Number,&lt;BR /&gt; Date($(vSalaryEntryDate) - 1 + IterNo()) as Date&lt;BR /&gt; AUTOGENERATE 1&lt;BR /&gt; WHILE Date($(vSalaryEntryDate) + IterNo()) &amp;lt;= Date($(vSalaryExitDate));&lt;BR /&gt;NEXT&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;It's not exactly what you are requesting but I maybe also a solution. Thanks for the fun with Qlik.. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;regards Mark&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 May 2009 03:56:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-in-qlikView-scripting/m-p/144074#M23130</guid>
      <dc:creator />
      <dc:date>2009-05-14T03:56:07Z</dc:date>
    </item>
    <item>
      <title>Date in qlikView scripting</title>
      <link>https://community.qlik.com/t5/QlikView/Date-in-qlikView-scripting/m-p/144075#M23131</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Mark,&lt;/P&gt;&lt;P&gt;I try your script, it seems to be good.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 May 2009 14:22:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-in-qlikView-scripting/m-p/144075#M23131</guid>
      <dc:creator />
      <dc:date>2009-05-14T14:22:08Z</dc:date>
    </item>
    <item>
      <title>Date in qlikView scripting</title>
      <link>https://community.qlik.com/t5/QlikView/Date-in-qlikView-scripting/m-p/144076#M23132</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can also use IntervalMatch to link the ranges into a date table. See the QV Cookbook example "Count days in a transaction using IntervalMatch" for an example of how to do this. You can download the QV Cookbook from&lt;BR /&gt;&lt;A href="http://robwunderlich.com/Download.html"&gt;http://robwunderlich.com/Download.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 May 2009 14:28:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Date-in-qlikView-scripting/m-p/144076#M23132</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2009-05-14T14:28:49Z</dc:date>
    </item>
  </channel>
</rss>

