<?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 Text in between Time Format. in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Text-in-between-Time-Format/m-p/1153596#M376692</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have two times, as a field namely&lt;/P&gt;&lt;P&gt;START_TIME&lt;/P&gt;&lt;P&gt;10:40:00&lt;/P&gt;&lt;P&gt;END_TIME&lt;/P&gt;&lt;P&gt;11:45:00&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DURATION_TIME&lt;/P&gt;&lt;P&gt;01:05:00&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and i found the duration between those two..&lt;/P&gt;&lt;P&gt;Now i want to display this duration time as&lt;STRONG&gt; 01 hour : 05 minutes : 00 seconds&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can we add text in between time format or is there any other way to achieve this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 27 Jul 2016 03:58:53 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2016-07-27T03:58:53Z</dc:date>
    <item>
      <title>Text in between Time Format.</title>
      <link>https://community.qlik.com/t5/QlikView/Text-in-between-Time-Format/m-p/1153596#M376692</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have two times, as a field namely&lt;/P&gt;&lt;P&gt;START_TIME&lt;/P&gt;&lt;P&gt;10:40:00&lt;/P&gt;&lt;P&gt;END_TIME&lt;/P&gt;&lt;P&gt;11:45:00&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DURATION_TIME&lt;/P&gt;&lt;P&gt;01:05:00&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and i found the duration between those two..&lt;/P&gt;&lt;P&gt;Now i want to display this duration time as&lt;STRONG&gt; 01 hour : 05 minutes : 00 seconds&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can we add text in between time format or is there any other way to achieve this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jul 2016 03:58:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Text-in-between-Time-Format/m-p/1153596#M376692</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-07-27T03:58:53Z</dc:date>
    </item>
    <item>
      <title>Re: Text in between Time Format.</title>
      <link>https://community.qlik.com/t5/QlikView/Text-in-between-Time-Format/m-p/1153597#M376693</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kishore,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Time(DURATION_TIME,'hh') &amp;amp; ' hour : ' &amp;amp; Time(DURATION_TIME,'mm') &amp;amp; ' minutes : ' &amp;amp; Time(DURATION_TIME,'ss')&amp;nbsp; &amp;amp; ' seconds'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if your &lt;SPAN style="font-size: 13.3333px;"&gt;DURATION_TIME field is in text format, you have to try like below.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;STRONG&gt;Time(Time#(DURATION_TIME,'hh:mm:ss'),'hh') &amp;amp; ' hour : ' &amp;amp; Time(Time#(DURATION_TIME,'hh:mm:ss'),'mm') &amp;amp; ' minutes : ' &amp;amp; Time(Time#(DURATION_TIME,'hh:mm:ss'),'ss')&amp;nbsp; &amp;amp; ' seconds'&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jul 2016 04:17:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Text-in-between-Time-Format/m-p/1153597#M376693</guid>
      <dc:creator>tamilarasu</dc:creator>
      <dc:date>2016-07-27T04:17:35Z</dc:date>
    </item>
    <item>
      <title>Re: Text in between Time Format.</title>
      <link>https://community.qlik.com/t5/QlikView/Text-in-between-Time-Format/m-p/1153598#M376694</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;or you can try&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;subfield(Duration_Time,':',1)&amp;amp;' Hours : '&amp;amp;&lt;SPAN style="font-size: 13.3333px;"&gt;subfield(Duration_Time,':',2)&amp;amp;' minutes : '&amp;amp;&lt;SPAN style="font-size: 13.3333px;"&gt;subfield(Duration_Time,':',3)&amp;amp;' Seconds'&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jul 2016 05:18:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Text-in-between-Time-Format/m-p/1153598#M376694</guid>
      <dc:creator>PrashantSangle</dc:creator>
      <dc:date>2016-07-27T05:18:05Z</dc:date>
    </item>
  </channel>
</rss>

