<?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: Interval match in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Interval-match/m-p/1359026#M833256</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be use a while loop here:&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-blogpost/3274"&gt;Loops in the Script&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 13 Jun 2017 11:04:35 GMT</pubDate>
    <dc:creator>sunny_talwar</dc:creator>
    <dc:date>2017-06-13T11:04:35Z</dc:date>
    <item>
      <title>Interval match</title>
      <link>https://community.qlik.com/t5/QlikView/Interval-match/m-p/1359025#M833255</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;I have one table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Schedule:&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;[Schedule Start],&lt;/P&gt;&lt;P&gt;[Schedule End]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;From Schedules:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This time format of both fields is 'YY/MM/DD hh:mm:ss'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to find all the times between the start and end time eg:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[Schedule Start]=17/06/13 13:33:00&lt;/P&gt;&lt;P&gt;[Schedule End] =17/06/13 13:36:00&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like my field to return :&lt;/P&gt;&lt;P&gt;TimeRange field:&lt;/P&gt;&lt;P&gt;17/06/13 13:33:00&lt;/P&gt;&lt;P&gt;17/06/13 13:34:00&lt;/P&gt;&lt;P&gt;17/06/13 13:35:00&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My point is to show how long my schedule was running down to the minute level and maybe another field going to second level.&lt;/P&gt;&lt;P&gt;if there is an easier way to do this other than an interval match please advise.&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, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Interval-match/m-p/1359025#M833255</guid>
      <dc:creator>bimanbeginner</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Interval match</title>
      <link>https://community.qlik.com/t5/QlikView/Interval-match/m-p/1359026#M833256</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be use a while loop here:&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-blogpost/3274"&gt;Loops in the Script&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Jun 2017 11:04:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Interval-match/m-p/1359026#M833256</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-06-13T11:04:35Z</dc:date>
    </item>
    <item>
      <title>Re: Interval match</title>
      <link>https://community.qlik.com/t5/QlikView/Interval-match/m-p/1359027#M833257</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sample script&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Table:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD *,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; TimeStamp(Schedule_Start + ((IterNo()-1)/(24*60))) as TimeRange&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;While Schedule_Start + (IterNo()/(24*60)) &amp;lt;= Schedule_End;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD * INLINE [&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Schedule_Start, Schedule_End&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 17/06/13 13:33:00, 17/06/13 13:36:00&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;];&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Jun 2017 11:08:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Interval-match/m-p/1359027#M833257</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-06-13T11:08:52Z</dc:date>
    </item>
    <item>
      <title>Re: Interval match</title>
      <link>https://community.qlik.com/t5/QlikView/Interval-match/m-p/1359028#M833258</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank You , if I wanted to go down to seconds would I Do the below?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Table:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD *,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; TimeStamp(Schedule_Start + ((IterNo()-1)/(24*3600))) as TimeRange&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;While Schedule_Start + (IterNo()/(24*3600)) &amp;lt;= Schedule_End;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD * INLINE [&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Schedule_Start, Schedule_End&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 17/06/13 13:33:00, 17/06/13 13:36:00&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;];&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Jun 2017 11:54:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Interval-match/m-p/1359028#M833258</guid>
      <dc:creator>bimanbeginner</dc:creator>
      <dc:date>2017-06-13T11:54:32Z</dc:date>
    </item>
    <item>
      <title>Re: Interval match</title>
      <link>https://community.qlik.com/t5/QlikView/Interval-match/m-p/1359029#M833259</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, you got the trick &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, 13 Jun 2017 12:07:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Interval-match/m-p/1359029#M833259</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-06-13T12:07:10Z</dc:date>
    </item>
  </channel>
</rss>

