<?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: Convert multiple hh:mm:ss into hours in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Convert-multiple-hh-mm-ss-into-hours/m-p/1002364#M959937</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;maybe with a calculated dimension in a chart (str table, bar, etc..)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;dimension&lt;/P&gt;&lt;P&gt;&lt;EM&gt;=Time(floor(t,1/24), 'hh')&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="1.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/103645_1.png" style="height: auto; width: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 31 Oct 2015 09:11:33 GMT</pubDate>
    <dc:creator>maxgro</dc:creator>
    <dc:date>2015-10-31T09:11:33Z</dc:date>
    <item>
      <title>Convert multiple hh:mm:ss into hours</title>
      <link>https://community.qlik.com/t5/QlikView/Convert-multiple-hh-mm-ss-into-hours/m-p/1002358#M959931</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For example I have time field&lt;/P&gt;&lt;P&gt;11:22:30&lt;/P&gt;&lt;P&gt;11:53:15&lt;/P&gt;&lt;P&gt;11:59:30&lt;/P&gt;&lt;P&gt;12:25:02&lt;/P&gt;&lt;P&gt;12:54:35&lt;/P&gt;&lt;P&gt;13:56:20&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I should get output&lt;/P&gt;&lt;P&gt;3 at 11hrs&lt;/P&gt;&lt;P&gt;2 at 12hrs&lt;/P&gt;&lt;P&gt;1 at 13 hrs&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 31 Oct 2015 08:29:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Convert-multiple-hh-mm-ss-into-hours/m-p/1002358#M959931</guid>
      <dc:creator>saumyashah90</dc:creator>
      <dc:date>2015-10-31T08:29:35Z</dc:date>
    </item>
    <item>
      <title>Re: Convert multiple hh:mm:ss into hours</title>
      <link>https://community.qlik.com/t5/QlikView/Convert-multiple-hh-mm-ss-into-hours/m-p/1002359#M959932</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe something like this ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;EM&gt;Temp01 :&lt;/EM&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;EM&gt;LOAD * INLINE [&lt;/EM&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;EM&gt;&amp;nbsp; Time&lt;/EM&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;EM&gt;&amp;nbsp; 11:22:30&lt;/EM&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;EM&gt;&amp;nbsp; 11:53:15&lt;/EM&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;EM&gt;&amp;nbsp; 11:59:30&lt;/EM&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;EM&gt;&amp;nbsp; 12:25:02&lt;/EM&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;EM&gt;&amp;nbsp; 12:54:35&lt;/EM&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;EM&gt;&amp;nbsp; 13:56:20&lt;/EM&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;EM&gt;];&lt;/EM&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;EM&gt;NoConcatenate&lt;/EM&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;EM&gt;Temp02 :&lt;/EM&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;EM&gt;Load&lt;/EM&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;EM&gt;&amp;nbsp; Hour(Time) as Hour ,&lt;/EM&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;EM&gt;&amp;nbsp; *&lt;/EM&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;EM&gt;;&lt;/EM&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;EM&gt;Load&lt;/EM&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;EM&gt;&amp;nbsp; Time ( Time# ( Time ,'hh:mm:ss' ) ) as Time &lt;/EM&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;EM&gt;resident Temp01&lt;/EM&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;EM&gt;;&lt;/EM&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;EM&gt;drop table Temp01 ;&lt;/EM&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;EM&gt;load&lt;/EM&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;EM&gt;&amp;nbsp; Hour ,&lt;/EM&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;EM&gt;&amp;nbsp; Count(Hour) as CountHour&lt;/EM&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;EM&gt;resident Temp02&lt;/EM&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;EM&gt;group by Hour&lt;/EM&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;EM&gt;order by Hour&lt;/EM&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;EM&gt;;&lt;/EM&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;EM&gt;drop table Temp02 ;&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 31 Oct 2015 08:42:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Convert-multiple-hh-mm-ss-into-hours/m-p/1002359#M959932</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-10-31T08:42:40Z</dc:date>
    </item>
    <item>
      <title>Re: Convert multiple hh:mm:ss into hours</title>
      <link>https://community.qlik.com/t5/QlikView/Convert-multiple-hh-mm-ss-into-hours/m-p/1002360#M959933</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi bill, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the response but idon't wanna go with group by or order by.... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With help of functions I can do I guess can you help me with that&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 31 Oct 2015 08:54:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Convert-multiple-hh-mm-ss-into-hours/m-p/1002360#M959933</guid>
      <dc:creator>saumyashah90</dc:creator>
      <dc:date>2015-10-31T08:54:19Z</dc:date>
    </item>
    <item>
      <title>Re: Convert multiple hh:mm:ss into hours</title>
      <link>https://community.qlik.com/t5/QlikView/Convert-multiple-hh-mm-ss-into-hours/m-p/1002361#M959934</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;STRONG&gt;Temp:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD * INLINE [Time,Old Time&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;11:22:30,11:22:30&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;11:53:15,11:53:15&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;11:59:30,11:59:30&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;12:25:02,12:25:02&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;12:54:35,12:54:35&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;13:56:20,13:56:20&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;];&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 10pt; line-height: 1.5em;"&gt;Newinfo:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;NoConcatenate&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;Hour(Time) as Hour,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;[Old Time]&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 10pt; line-height: 1.5em;"&gt;Resident Temp;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 10pt; line-height: 1.5em;"&gt;Drop Table Temp;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this Helps,&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Hirish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 31 Oct 2015 09:00:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Convert-multiple-hh-mm-ss-into-hours/m-p/1002361#M959934</guid>
      <dc:creator>HirisH_V7</dc:creator>
      <dc:date>2015-10-31T09:00:22Z</dc:date>
    </item>
    <item>
      <title>Re: Convert multiple hh:mm:ss into hours</title>
      <link>https://community.qlik.com/t5/QlikView/Convert-multiple-hh-mm-ss-into-hours/m-p/1002362#M959935</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Why don't you want to use group by or order by.... ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 31 Oct 2015 09:01:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Convert-multiple-hh-mm-ss-into-hours/m-p/1002362#M959935</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-10-31T09:01:09Z</dc:date>
    </item>
    <item>
      <title>Re: Convert multiple hh:mm:ss into hours</title>
      <link>https://community.qlik.com/t5/QlikView/Convert-multiple-hh-mm-ss-into-hours/m-p/1002363#M959936</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There are millions of rows and numerous fields along with it.... If iload whole datable again doing no concatenate will create redundancy &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 31 Oct 2015 09:11:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Convert-multiple-hh-mm-ss-into-hours/m-p/1002363#M959936</guid>
      <dc:creator>saumyashah90</dc:creator>
      <dc:date>2015-10-31T09:11:16Z</dc:date>
    </item>
    <item>
      <title>Re: Convert multiple hh:mm:ss into hours</title>
      <link>https://community.qlik.com/t5/QlikView/Convert-multiple-hh-mm-ss-into-hours/m-p/1002364#M959937</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;maybe with a calculated dimension in a chart (str table, bar, etc..)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;dimension&lt;/P&gt;&lt;P&gt;&lt;EM&gt;=Time(floor(t,1/24), 'hh')&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="1.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/103645_1.png" style="height: auto; width: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 31 Oct 2015 09:11:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Convert-multiple-hh-mm-ss-into-hours/m-p/1002364#M959937</guid>
      <dc:creator>maxgro</dc:creator>
      <dc:date>2015-10-31T09:11:33Z</dc:date>
    </item>
    <item>
      <title>Re: Convert multiple hh:mm:ss into hours</title>
      <link>https://community.qlik.com/t5/QlikView/Convert-multiple-hh-mm-ss-into-hours/m-p/1002365#M959938</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;&lt;STRONG&gt;Temp:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD * INLINE [Time,Old Time&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;11:22:30,11:22:30&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;11:53:15,11:53:15&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;11:59:30,11:59:30&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;12:25:02,12:25:02&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;12:54:35,12:54:35&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;13:56:20,13:56:20&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;];&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Newinfo:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;NoConcatenate&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;Hour(Time) as Hour,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Time(Time, 'hh:mm TT') AS TimeAMPM,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Time(Time) AS Time24h,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;[Old Time]&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Resident Temp;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Drop Table Temp;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope This Helps .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Hirish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 31 Oct 2015 09:17:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Convert-multiple-hh-mm-ss-into-hours/m-p/1002365#M959938</guid>
      <dc:creator>HirisH_V7</dc:creator>
      <dc:date>2015-10-31T09:17:20Z</dc:date>
    </item>
    <item>
      <title>Re: Convert multiple hh:mm:ss into hours</title>
      <link>https://community.qlik.com/t5/QlikView/Convert-multiple-hh-mm-ss-into-hours/m-p/1002366#M959939</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just use the count() function in the front end then.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 31 Oct 2015 09:19:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Convert-multiple-hh-mm-ss-into-hours/m-p/1002366#M959939</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-10-31T09:19:03Z</dc:date>
    </item>
  </channel>
</rss>

