<?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 SUM Duration in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/SUM-Duration/m-p/236353#M87551</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;pls can any body tell me how to get the sum of duration&lt;/P&gt;&lt;P&gt;for eg:&lt;/P&gt;&lt;P&gt;00:01:02&lt;/P&gt;&lt;P&gt;00:00:03&lt;/P&gt;&lt;P&gt;and the sum will be 00:01:05&lt;/P&gt;&lt;P&gt;Duration is a field in the database.&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Arun&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 10 May 2010 13:39:56 GMT</pubDate>
    <dc:creator />
    <dc:date>2010-05-10T13:39:56Z</dc:date>
    <item>
      <title>SUM Duration</title>
      <link>https://community.qlik.com/t5/QlikView/SUM-Duration/m-p/236353#M87551</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;pls can any body tell me how to get the sum of duration&lt;/P&gt;&lt;P&gt;for eg:&lt;/P&gt;&lt;P&gt;00:01:02&lt;/P&gt;&lt;P&gt;00:00:03&lt;/P&gt;&lt;P&gt;and the sum will be 00:01:05&lt;/P&gt;&lt;P&gt;Duration is a field in the database.&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Arun&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 May 2010 13:39:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SUM-Duration/m-p/236353#M87551</guid>
      <dc:creator />
      <dc:date>2010-05-10T13:39:56Z</dc:date>
    </item>
    <item>
      <title>SUM Duration</title>
      <link>https://community.qlik.com/t5/QlikView/SUM-Duration/m-p/236354#M87552</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sum(Duration)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 May 2010 13:48:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SUM-Duration/m-p/236354#M87552</guid>
      <dc:creator />
      <dc:date>2010-05-10T13:48:58Z</dc:date>
    </item>
    <item>
      <title>SUM Duration</title>
      <link>https://community.qlik.com/t5/QlikView/SUM-Duration/m-p/236355#M87553</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Arun,&lt;/P&gt;&lt;P&gt;The post given above will solve your issue. But when you get it in a list bos, it shows you some decimal value. In order to override this, go to the list box properties and override the dimension with time format. Or you can do it in the script part by specifing the format fot the time. That is like given belo:&lt;/P&gt;&lt;P&gt;Sum(Time)&lt;/P&gt;&lt;P&gt;and then Time(timefeild,'HH:MM:SS')&lt;/P&gt;&lt;P&gt;hope this solves your issue.&lt;/P&gt;&lt;P&gt;Thanks Joseph.....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 May 2010 14:06:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SUM-Duration/m-p/236355#M87553</guid>
      <dc:creator />
      <dc:date>2010-05-10T14:06:08Z</dc:date>
    </item>
    <item>
      <title>SUM Duration</title>
      <link>https://community.qlik.com/t5/QlikView/SUM-Duration/m-p/236356#M87554</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If Duration is a formatted interval of time, sum(Duration) appears to preserve the formatting. If you have to format it manually for some reason, use interval instead of time. Time is the time on a clock, like 8:00 AM, not a duration of time. Interval is used for a duration of time, like 8 hours.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 May 2010 20:59:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SUM-Duration/m-p/236356#M87554</guid>
      <dc:creator>johnw</dc:creator>
      <dc:date>2010-05-10T20:59:32Z</dc:date>
    </item>
    <item>
      <title>SUM Duration</title>
      <link>https://community.qlik.com/t5/QlikView/SUM-Duration/m-p/236357#M87555</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;H4&gt;You Can Try this.&lt;BR /&gt;&lt;/H4&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;Interval (Sum([Duration]))&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;Regards. &lt;BR /&gt;Tonial.&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 May 2010 21:18:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SUM-Duration/m-p/236357#M87555</guid>
      <dc:creator />
      <dc:date>2010-05-10T21:18:14Z</dc:date>
    </item>
  </channel>
</rss>

