<?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: Caluculate the time diff bn two time stamps in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Caluculate-the-time-diff-bn-two-time-stamps/m-p/1518290#M62598</link>
    <description>&lt;P&gt;Subtract the start date and time from the end date and time: EndDate+EndTime-StartDate-StartTime&lt;/P&gt;&lt;P&gt;Perhaps when you load the data you have to change text values into date and time values:&lt;/P&gt;&lt;PRE&gt;LOAD&lt;BR /&gt;    *,&lt;BR /&gt;    Interval(EndDate+EndTime-StartDate-StartTime,'mm') as JourneyInMinutes&lt;BR /&gt;    ;&lt;BR /&gt;LOAD
    Date(Date#(StartDate,'DD/MM/YYYY'),'DD/MM/YYYY') as StartDate,
    Time(Time#(StartTime,'hh:mm:ss'),'hh:mm:ss') as StartTime,
    Date(Date#(EndDate,'DD/MM/YYYY'),'DD/MM/YYYY') as EndDate,
    Time(Time#(EndTime,'hh:mm:ss'),'hh:mm:ss') as EndTime,
FROM
    ...source...&lt;/PRE&gt;</description>
    <pubDate>Sun, 09 Dec 2018 08:15:59 GMT</pubDate>
    <dc:creator>Gysbert_Wassenaar</dc:creator>
    <dc:date>2018-12-09T08:15:59Z</dc:date>
    <item>
      <title>Caluculate the time diff bn two time stamps</title>
      <link>https://community.qlik.com/t5/App-Development/Caluculate-the-time-diff-bn-two-time-stamps/m-p/1518286#M62597</link>
      <description>&lt;P&gt;I four columns in a Table. LIke&lt;/P&gt;&lt;P&gt;StartDate,&amp;nbsp; &amp;nbsp; &amp;nbsp; StartTime,&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;EndDate,&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; EndTime&lt;/P&gt;&lt;P&gt;30/09/2018,&amp;nbsp; &amp;nbsp; 22:10:55,&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;01/10/2018,&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 00:55:23&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;01/09/2018,&amp;nbsp; &amp;nbsp; &amp;nbsp;15:10:55,&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;02/10/2018,&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 01:55:23&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;01/09/2018,&amp;nbsp; &amp;nbsp; 22:10:55,&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;02/10/2018,&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 15:55:23&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;03/09/2018,&amp;nbsp; &amp;nbsp; &amp;nbsp;15:10:55,&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;03/10/2018,&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;22:55:23&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I want total journey in Minutes.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Dec 2021 20:08:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Caluculate-the-time-diff-bn-two-time-stamps/m-p/1518286#M62597</guid>
      <dc:creator>Kohli</dc:creator>
      <dc:date>2021-12-21T20:08:52Z</dc:date>
    </item>
    <item>
      <title>Re: Caluculate the time diff bn two time stamps</title>
      <link>https://community.qlik.com/t5/App-Development/Caluculate-the-time-diff-bn-two-time-stamps/m-p/1518290#M62598</link>
      <description>&lt;P&gt;Subtract the start date and time from the end date and time: EndDate+EndTime-StartDate-StartTime&lt;/P&gt;&lt;P&gt;Perhaps when you load the data you have to change text values into date and time values:&lt;/P&gt;&lt;PRE&gt;LOAD&lt;BR /&gt;    *,&lt;BR /&gt;    Interval(EndDate+EndTime-StartDate-StartTime,'mm') as JourneyInMinutes&lt;BR /&gt;    ;&lt;BR /&gt;LOAD
    Date(Date#(StartDate,'DD/MM/YYYY'),'DD/MM/YYYY') as StartDate,
    Time(Time#(StartTime,'hh:mm:ss'),'hh:mm:ss') as StartTime,
    Date(Date#(EndDate,'DD/MM/YYYY'),'DD/MM/YYYY') as EndDate,
    Time(Time#(EndTime,'hh:mm:ss'),'hh:mm:ss') as EndTime,
FROM
    ...source...&lt;/PRE&gt;</description>
      <pubDate>Sun, 09 Dec 2018 08:15:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Caluculate-the-time-diff-bn-two-time-stamps/m-p/1518290#M62598</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2018-12-09T08:15:59Z</dc:date>
    </item>
    <item>
      <title>Re: Caluculate the time diff bn two time stamps</title>
      <link>https://community.qlik.com/t5/App-Development/Caluculate-the-time-diff-bn-two-time-stamps/m-p/1518296#M62599</link>
      <description>&lt;P&gt;Hello Gysbert,&lt;/P&gt;&lt;P&gt;Thank you for time spent.&lt;/P&gt;&lt;P&gt;&amp;nbsp; I am getting null records with above formula.&lt;/P&gt;</description>
      <pubDate>Sun, 09 Dec 2018 10:10:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Caluculate-the-time-diff-bn-two-time-stamps/m-p/1518296#M62599</guid>
      <dc:creator>Kohli</dc:creator>
      <dc:date>2018-12-09T10:10:07Z</dc:date>
    </item>
    <item>
      <title>Re: Caluculate the time diff bn two time stamps</title>
      <link>https://community.qlik.com/t5/App-Development/Caluculate-the-time-diff-bn-two-time-stamps/m-p/1518303#M62600</link>
      <description>&lt;P&gt;Then you need to find out what kind of data you're loading. Are they text values or are the numeric values?&lt;/P&gt;</description>
      <pubDate>Sun, 09 Dec 2018 10:51:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Caluculate-the-time-diff-bn-two-time-stamps/m-p/1518303#M62600</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2018-12-09T10:51:57Z</dc:date>
    </item>
    <item>
      <title>Re: Caluculate the time diff bn two time stamps</title>
      <link>https://community.qlik.com/t5/App-Development/Caluculate-the-time-diff-bn-two-time-stamps/m-p/1519305#M62601</link>
      <description>&lt;P&gt;Only numeric values. There is no text values like Am and PM.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Dec 2018 13:33:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Caluculate-the-time-diff-bn-two-time-stamps/m-p/1519305#M62601</guid>
      <dc:creator>Kohli</dc:creator>
      <dc:date>2018-12-11T13:33:32Z</dc:date>
    </item>
    <item>
      <title>Re: Caluculate the time diff bn two time stamps</title>
      <link>https://community.qlik.com/t5/App-Development/Caluculate-the-time-diff-bn-two-time-stamps/m-p/1519436#M62602</link>
      <description>&lt;P&gt;That you don't see AM and PM does not mean that the values are numeric values.&amp;nbsp; If I type 25 in this post it is text and not numeric.&amp;nbsp; But if you're sure that they're numbers then I can't help unless you post a small Qlik Sense app with example data that exhibits the problem you describe. So, please post such an example .qvf file.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Dec 2018 16:44:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Caluculate-the-time-diff-bn-two-time-stamps/m-p/1519436#M62602</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2018-12-11T16:44:30Z</dc:date>
    </item>
    <item>
      <title>Re: Caluculate the time diff bn two time stamps</title>
      <link>https://community.qlik.com/t5/App-Development/Caluculate-the-time-diff-bn-two-time-stamps/m-p/1519581#M62603</link>
      <description>&lt;P&gt;Please find below XL file and calculate the time diff in Minuit's.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Dec 2018 05:46:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Caluculate-the-time-diff-bn-two-time-stamps/m-p/1519581#M62603</guid>
      <dc:creator>Kohli</dc:creator>
      <dc:date>2018-12-12T05:46:18Z</dc:date>
    </item>
  </channel>
</rss>

