<?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(value) in different hour in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Sum-value-in-different-hour/m-p/1096003#M364113</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello everyone, &lt;/P&gt;&lt;P&gt;I have the hour field and for each 15 minuts a value. &lt;/P&gt;&lt;P&gt;I need to sum the value for each hours. In the immage attached for example I need to have a value 0.21 for 09, 0.62 for 10 etc. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for any help&lt;/P&gt;&lt;P&gt;Pasquale&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 23 Feb 2016 14:59:46 GMT</pubDate>
    <dc:creator>pascos88</dc:creator>
    <dc:date>2016-02-23T14:59:46Z</dc:date>
    <item>
      <title>Sum(value) in different hour</title>
      <link>https://community.qlik.com/t5/QlikView/Sum-value-in-different-hour/m-p/1096003#M364113</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello everyone, &lt;/P&gt;&lt;P&gt;I have the hour field and for each 15 minuts a value. &lt;/P&gt;&lt;P&gt;I need to sum the value for each hours. In the immage attached for example I need to have a value 0.21 for 09, 0.62 for 10 etc. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for any help&lt;/P&gt;&lt;P&gt;Pasquale&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Feb 2016 14:59:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sum-value-in-different-hour/m-p/1096003#M364113</guid>
      <dc:creator>pascos88</dc:creator>
      <dc:date>2016-02-23T14:59:46Z</dc:date>
    </item>
    <item>
      <title>Re: Sum(value) in different hour</title>
      <link>https://community.qlik.com/t5/QlikView/Sum-value-in-different-hour/m-p/1096004#M364114</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be use a calculated dimension:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Calculated Dimension:&lt;STRONG&gt; Hour(Hour)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Expression: &lt;STRONG&gt;Sum([KWh Real])&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Feb 2016 15:01:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sum-value-in-different-hour/m-p/1096004#M364114</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-02-23T15:01:29Z</dc:date>
    </item>
    <item>
      <title>Re: Sum(value) in different hour</title>
      <link>https://community.qlik.com/t5/QlikView/Sum-value-in-different-hour/m-p/1096005#M364115</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just replace your currently used dimension with a calculated dimension:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=Hour( &lt;EM&gt;YourHourField&lt;/EM&gt;)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Feb 2016 15:01:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sum-value-in-different-hour/m-p/1096005#M364115</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2016-02-23T15:01:39Z</dc:date>
    </item>
    <item>
      <title>Re: Sum(value) in different hour</title>
      <link>https://community.qlik.com/t5/QlikView/Sum-value-in-different-hour/m-p/1096006#M364116</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Pascuale, you can create a dimension with only the hour part:&lt;/P&gt;&lt;P&gt;Hour(Time_Field)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can be a calculated dimension or a field created in script.&lt;/P&gt;&lt;P&gt;Then just an expression like Sum(Value_Field) should return the values grouped by hour&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Feb 2016 15:04:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sum-value-in-different-hour/m-p/1096006#M364116</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2016-02-23T15:04:08Z</dc:date>
    </item>
    <item>
      <title>Re: Sum(value) in different hour</title>
      <link>https://community.qlik.com/t5/QlikView/Sum-value-in-different-hour/m-p/1096007#M364117</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Alternatively, calculate Hour in the script&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SET TimeFormat='hh:mm';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Table:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD Hour as Time,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; Hour(Hour) as Hour,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; [KWh Real]&amp;nbsp; &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Inline [&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Hour, KWh Real&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;09:00, 0.01&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;09:15, 0.03&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;09:30, 0.06&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;09:45, 0.11&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;10:00, 0.16&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;10:15, 0.30&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;10:30, 0.14&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;10:45, 0.02&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;];&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;&lt;IMG __jive_id="115647" alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/115647_Capture.PNG" style="height: auto;" /&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Feb 2016 15:10:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sum-value-in-different-hour/m-p/1096007#M364117</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-02-23T15:10:45Z</dc:date>
    </item>
    <item>
      <title>Re: Sum(value) in different hour</title>
      <link>https://community.qlik.com/t5/QlikView/Sum-value-in-different-hour/m-p/1096008#M364118</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;try &lt;/P&gt;&lt;P&gt;in&amp;nbsp; your&amp;nbsp; dimension Hour(hour) ,&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;in your expessions Sum([KWh Real])&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="time.JPG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/115648_time.JPG" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Feb 2016 15:29:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sum-value-in-different-hour/m-p/1096008#M364118</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-02-23T15:29:52Z</dc:date>
    </item>
  </channel>
</rss>

