<?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 Interval Time between two times in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Interval-Time-between-two-times/m-p/762100#M1042638</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I need to find the time lapsed between two times which are basically the start and end times, and display it(Table) in the "hhmmss' Format. &lt;BR /&gt;1. 12:55:54 PM&lt;/P&gt;&lt;P&gt;2. 12:59:45 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 02 Dec 2014 20:16:35 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-12-02T20:16:35Z</dc:date>
    <item>
      <title>Interval Time between two times</title>
      <link>https://community.qlik.com/t5/QlikView/Interval-Time-between-two-times/m-p/762100#M1042638</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I need to find the time lapsed between two times which are basically the start and end times, and display it(Table) in the "hhmmss' Format. &lt;BR /&gt;1. 12:55:54 PM&lt;/P&gt;&lt;P&gt;2. 12:59:45 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Dec 2014 20:16:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Interval-Time-between-two-times/m-p/762100#M1042638</guid>
      <dc:creator />
      <dc:date>2014-12-02T20:16:35Z</dc:date>
    </item>
    <item>
      <title>Re: Interval Time between two times</title>
      <link>https://community.qlik.com/t5/QlikView/Interval-Time-between-two-times/m-p/762101#M1042639</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Interval(Time2 - Time1, 'hhmmss')&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Dec 2014 20:21:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Interval-Time-between-two-times/m-p/762101#M1042639</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2014-12-02T20:21:09Z</dc:date>
    </item>
    <item>
      <title>Re: Interval Time between two times</title>
      <link>https://community.qlik.com/t5/QlikView/Interval-Time-between-two-times/m-p/762102#M1042640</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If your time fields are text, then&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Interval(Time#(Time2, 'hh:mm:ss TT')-Time#(Time1, 'hh:mm:ss TT'),''hhmmss')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;either in a straight table or in the load script as:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Interval(Time#(Time2, 'hh:mm:ss TT')-Time#(Time1, 'hh:mm:ss TT'),''hhmmss') as Interval&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Dec 2014 20:23:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Interval-Time-between-two-times/m-p/762102#M1042640</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2014-12-02T20:23:25Z</dc:date>
    </item>
    <item>
      <title>Re: Interval Time between two times</title>
      <link>https://community.qlik.com/t5/QlikView/Interval-Time-between-two-times/m-p/762103#M1042641</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can write like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;Time#(start,'hh:mm:ss TT') as start,Time#(end,'hh:mm:ss TT') as end,&lt;/P&gt;&lt;P&gt;Interval(Time#(end,'hh:mm:ss TT') - Time#(start,'hh:mm:ss TT'),'hh:mm:ss') as Diff;&lt;/P&gt;&lt;P&gt;LOAD * Inline [&lt;/P&gt;&lt;P&gt;start,end&lt;/P&gt;&lt;P&gt;12:55:54 PM,12:59:45 PM&amp;nbsp;&amp;nbsp; ];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or you can direct use&lt;/P&gt;&lt;P&gt;Interval(Time#(end,'hh:mm:ss TT') - Time#(start,'hh:mm:ss TT'),'hh:mm:ss')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Interval(end - start 'hh:mm:ss')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anand&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Dec 2014 20:47:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Interval-Time-between-two-times/m-p/762103#M1042641</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2014-12-02T20:47:12Z</dc:date>
    </item>
  </channel>
</rss>

