<?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: converting in to time format in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/converting-in-to-time-format/m-p/1379178#M420676</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think you're presenting the value wrong - there's no way the value after the period is milliseconds (&lt;SPAN style="font-size: 10.0pt; font-family: 'Segoe UI',sans-serif; color: black;"&gt;533333333333)&lt;/SPAN&gt;. If it was, it would represent roughly 17 years.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it represents part of a minute, you have to figure out if it represents a fraction (in which case the value is roughly 01:55:31) or a representation of seconds (in which case the value is 01:55:53). Neither one is particularly complicated to format, but you have to know which one you're looking for. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 27 Nov 2017 12:58:49 GMT</pubDate>
    <dc:creator>Or</dc:creator>
    <dc:date>2017-11-27T12:58:49Z</dc:date>
    <item>
      <title>converting in to time format</title>
      <link>https://community.qlik.com/t5/QlikView/converting-in-to-time-format/m-p/1379170#M420668</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="margin-top: 2pt; margin-bottom: 2pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Segoe UI',sans-serif; color: black;"&gt;I am pulling some data from Excel, a column has value in min and second (e.g. 115.533333333333 ). this is 115 minutes and rest are milliseconds&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-top: 2pt; margin-bottom: 2pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Segoe UI',sans-serif; color: black;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Segoe UI',sans-serif; color: black;"&gt;I want to convert this value in HH:MM:SS&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Segoe UI',sans-serif; color: black;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="margin-top: 2pt; margin-bottom: 2pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Segoe UI',sans-serif; color: black;"&gt;Interval(round(elapsed_time_in_minutes*60),'ss') as elapsed_time_in_min_1,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-top: 2pt; margin-bottom: 2pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Segoe UI',sans-serif; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Interval(round(elapsed_time_in_minutes*60),'mm.ss') as elapsed_time_in_min_2,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-top: 2pt; margin-bottom: 2pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Segoe UI',sans-serif; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Interval(round(elapsed_time_in_minutes),'mm.ss') as elapsed_time_in_min_3,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-top: 2pt; margin-bottom: 2pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Segoe UI',sans-serif; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; interval(timestamp#(elapsed_time_in_minutes,'s'),'hh:mm:ss') as elapsed_time_in_min_4,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-top: 2pt; margin-bottom: 2pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Segoe UI',sans-serif; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Interval(Interval#(elapsed_time_in_minutes/1000,'ss'),'mm:ss')as elapsed_time_in_min_6,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-top: 2pt; margin-bottom: 2pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Segoe UI',sans-serif; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TimeStamp((elapsed_time_in_minutes/(1000*60*60*24)),'mm:ss')as elapsed_time_in_min_5;&lt;/SPAN&gt; &lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Segoe UI',sans-serif; color: black;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Segoe UI',sans-serif; color: black;"&gt;but non are working&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Segoe UI',sans-serif; color: black;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 10.0pt; font-family: 'Segoe UI',sans-serif; color: black;"&gt;pls help me&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Nov 2017 12:24:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/converting-in-to-time-format/m-p/1379170#M420668</guid>
      <dc:creator>manoranjan_d</dc:creator>
      <dc:date>2017-11-27T12:24:33Z</dc:date>
    </item>
    <item>
      <title>Re: converting in to time format</title>
      <link>https://community.qlik.com/t5/QlikView/converting-in-to-time-format/m-p/1379171#M420669</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you know the value of given number in hh:mm:ss format??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Nov 2017 12:38:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/converting-in-to-time-format/m-p/1379171#M420669</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2017-11-27T12:38:56Z</dc:date>
    </item>
    <item>
      <title>Re: converting in to time format</title>
      <link>https://community.qlik.com/t5/QlikView/converting-in-to-time-format/m-p/1379172#M420670</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;=Interval(Interval#('115.533333333333','mm.fff'), 'HH:mm:ss')&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.JPG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/184708_Capture.JPG" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Nov 2017 12:41:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/converting-in-to-time-format/m-p/1379172#M420670</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2017-11-27T12:41:58Z</dc:date>
    </item>
    <item>
      <title>Re: converting in to time format</title>
      <link>https://community.qlik.com/t5/QlikView/converting-in-to-time-format/m-p/1379173#M420671</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi anil,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;basic requirement is 115.53333&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;115 minutes and rest are &lt;SPAN style="color: #000000; font-family: 'Segoe UI', sans-serif; font-size: 13.3333px;"&gt;milliseconds&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: 'Segoe UI', sans-serif; font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: 'Segoe UI', sans-serif; font-size: 13.3333px;"&gt;now in the script level i want to convert this &lt;SPAN style="color: #000000; font-family: 'Segoe UI', sans-serif; font-size: 13.3333px;"&gt;value in HH:MM:SS&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Nov 2017 12:42:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/converting-in-to-time-format/m-p/1379173#M420671</guid>
      <dc:creator>manoranjan_d</dc:creator>
      <dc:date>2017-11-27T12:42:10Z</dc:date>
    </item>
    <item>
      <title>Re: converting in to time format</title>
      <link>https://community.qlik.com/t5/QlikView/converting-in-to-time-format/m-p/1379174#M420672</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi anil,&lt;/P&gt;&lt;P&gt;pls dont pass value its a field i want to covert this into the script level not int he chart or test box level&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Nov 2017 12:45:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/converting-in-to-time-format/m-p/1379174#M420672</guid>
      <dc:creator>manoranjan_d</dc:creator>
      <dc:date>2017-11-27T12:45:07Z</dc:date>
    </item>
    <item>
      <title>Re: converting in to time format</title>
      <link>https://community.qlik.com/t5/QlikView/converting-in-to-time-format/m-p/1379175#M420673</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Manoranjan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You could use:&lt;/P&gt;&lt;P&gt;I&lt;SPAN style="font-size: 13.3333px;"&gt;NTERVAL(&lt;SPAN style="color: #000000; font-family: 'Segoe UI', sans-serif; font-size: 13.3333px;"&gt;elapsed_time_in_minutes&lt;/SPAN&gt;/60/24,'hh:mm:ss')&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Or&lt;/P&gt;&lt;P&gt; // only inminutes&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;INTERVAL(FLOOR(&lt;SPAN style="color: #000000; font-family: 'Segoe UI', sans-serif; font-size: 13.3333px;"&gt;elapsed_time_in_minutes&lt;/SPAN&gt;)/60/24,'hh:mm:ss') &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the decimal numbers are in miliseconds (not seconds) you could use: &lt;/P&gt;&lt;P&gt;=INTERVAL((FLOOR(elapsed_time_in_minutes)/60/24)+(elapsed_time_in_minutes - FLOOR(elapsed_time_in_minutes))/100/60/24,'hh:mm:ss') &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Results:&lt;/P&gt;&lt;P&gt;01:55:32 (1 hour, 55 minutes and 32 seconds)&lt;/P&gt;&lt;P&gt;Or&lt;/P&gt;&lt;P&gt;01:55:00&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Nov 2017 12:47:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/converting-in-to-time-format/m-p/1379175#M420673</guid>
      <dc:creator>avkeep01</dc:creator>
      <dc:date>2017-11-27T12:47:25Z</dc:date>
    </item>
    <item>
      <title>Re: converting in to time format</title>
      <link>https://community.qlik.com/t5/QlikView/converting-in-to-time-format/m-p/1379176#M420674</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this?&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;=Interval(Interval#(FieldName,'mm.fff'), 'HH:mm:ss')&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Nov 2017 12:50:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/converting-in-to-time-format/m-p/1379176#M420674</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2017-11-27T12:50:10Z</dc:date>
    </item>
    <item>
      <title>Re: converting in to time format</title>
      <link>https://community.qlik.com/t5/QlikView/converting-in-to-time-format/m-p/1379177#M420675</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;may be try with this&amp;nbsp; its working for me&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="tim.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/184692_tim.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Nov 2017 12:51:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/converting-in-to-time-format/m-p/1379177#M420675</guid>
      <dc:creator>Chanty4u</dc:creator>
      <dc:date>2017-11-27T12:51:57Z</dc:date>
    </item>
    <item>
      <title>Re: converting in to time format</title>
      <link>https://community.qlik.com/t5/QlikView/converting-in-to-time-format/m-p/1379178#M420676</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think you're presenting the value wrong - there's no way the value after the period is milliseconds (&lt;SPAN style="font-size: 10.0pt; font-family: 'Segoe UI',sans-serif; color: black;"&gt;533333333333)&lt;/SPAN&gt;. If it was, it would represent roughly 17 years.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it represents part of a minute, you have to figure out if it represents a fraction (in which case the value is roughly 01:55:31) or a representation of seconds (in which case the value is 01:55:53). Neither one is particularly complicated to format, but you have to know which one you're looking for. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Nov 2017 12:58:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/converting-in-to-time-format/m-p/1379178#M420676</guid>
      <dc:creator>Or</dc:creator>
      <dc:date>2017-11-27T12:58:49Z</dc:date>
    </item>
  </channel>
</rss>

