<?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: half hour intervals in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/half-hour-intervals/m-p/938354#M323765</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Heyy ,thnqeww soo much for your reply ,it is really helpful .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you please tell :-&lt;/P&gt;&lt;P&gt;As Call start time is not a static field ,it will keep on increasing as the data will increase ,so is there any other way of doing this load * inline expression because I can't specify all the values here&lt;/P&gt;&lt;P&gt;under call start time .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 25 Oct 2015 17:06:19 GMT</pubDate>
    <dc:creator>anjali0108</dc:creator>
    <dc:date>2015-10-25T17:06:19Z</dc:date>
    <item>
      <title>half hour intervals</title>
      <link>https://community.qlik.com/t5/QlikView/half-hour-intervals/m-p/938352#M323763</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 a date time field as :-&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" width="154"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD height="20" width="154"&gt;Call Start Time&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" class="xl63" height="20"&gt;10/18/2015 12:12&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" class="xl63" height="20"&gt;10/18/2015 13:05&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" class="xl63" height="20"&gt;10/18/2015 14:42&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" class="xl63" height="20"&gt;10/18/2015 14:52&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" class="xl63" height="20"&gt;10/18/2015 15:06&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" class="xl63" height="20"&gt;10/18/2015 15:27&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD align="right" class="xl63" height="20"&gt;10/18/2015 15:38&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this,I want to divide a day into half hour slots like 11:30-12:00,12-12:30 etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And I want the calls who have call start time falling in that particular half hour interval to be counted .&lt;/P&gt;&lt;P&gt;Example 5 calls have been logged in the interval 11:30-12:00 .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please suggest .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Oct 2015 12:37:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/half-hour-intervals/m-p/938352#M323763</guid>
      <dc:creator>anjali0108</dc:creator>
      <dc:date>2015-10-21T12:37:57Z</dc:date>
    </item>
    <item>
      <title>Re: half hour intervals</title>
      <link>https://community.qlik.com/t5/QlikView/half-hour-intervals/m-p/938353#M323764</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SET TimestampFormat='M/D/YYYY hh:mm';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Table:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD [Call Start Time],&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; Time(Floor([Call Start Time], (1/48)), 'hh:mm') &amp;amp; ' - ' &amp;amp;&amp;nbsp; Time(Ceil([Call Start Time], (1/48)), 'hh:mm') as Interval;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD * Inline [&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Call Start Time&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;10/18/2015 12:12&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;10/18/2015 13:05&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;10/18/2015 14:42&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;10/18/2015 14:52&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;10/18/2015 15:06&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;10/18/2015 15:27&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;10/18/2015 15:38&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="102661" alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/102661_Capture.PNG" style="height: auto;" /&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Oct 2015 12:42:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/half-hour-intervals/m-p/938353#M323764</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-10-21T12:42:00Z</dc:date>
    </item>
    <item>
      <title>Re: half hour intervals</title>
      <link>https://community.qlik.com/t5/QlikView/half-hour-intervals/m-p/938354#M323765</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Heyy ,thnqeww soo much for your reply ,it is really helpful .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you please tell :-&lt;/P&gt;&lt;P&gt;As Call start time is not a static field ,it will keep on increasing as the data will increase ,so is there any other way of doing this load * inline expression because I can't specify all the values here&lt;/P&gt;&lt;P&gt;under call start time .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 25 Oct 2015 17:06:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/half-hour-intervals/m-p/938354#M323765</guid>
      <dc:creator>anjali0108</dc:creator>
      <dc:date>2015-10-25T17:06:19Z</dc:date>
    </item>
    <item>
      <title>Re: half hour intervals</title>
      <link>https://community.qlik.com/t5/QlikView/half-hour-intervals/m-p/938355#M323766</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The INLINE load here was used just as an example, to illustrate the use of the functions Floor() and Ceil() with timestamps. Once you understand how they work, you can apply this logic to your own loads.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers,&lt;/P&gt;&lt;P&gt;Oleg Troyansky&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.amazon.com/gp/product/1118949552/ref=as_li_tl?ie=UTF8&amp;amp;camp=1789&amp;amp;creative=9325&amp;amp;creativeASIN=1118949552&amp;amp;linkCode=as2&amp;amp;tag=natursyner0f-20&amp;amp;linkId=64QJ6MD3O54VZHF7" rel="nofollow"&gt;Check out my new book &lt;EM&gt;QlikView Your Business&lt;/EM&gt;: An expert guide to Business Discovery with QlikView and Qlik Sense&lt;/A&gt;&lt;IMG alt="" border="0" height="1" src="http://ir-na.amazon-adsystem.com/e/ir?t=natursyner0f-20&amp;amp;l=as2&amp;amp;o=1&amp;amp;a=1118949552" style="border: none !important; margin: 0px !important;" width="1" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 25 Oct 2015 21:22:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/half-hour-intervals/m-p/938355#M323766</guid>
      <dc:creator>Oleg_Troyansky</dc:creator>
      <dc:date>2015-10-25T21:22:13Z</dc:date>
    </item>
    <item>
      <title>Re: half hour intervals</title>
      <link>https://community.qlik.com/t5/QlikView/half-hour-intervals/m-p/938356#M323767</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As Oleg has already pointed out that this is just me working with sample data, but with your original data you would do something like this:&lt;/P&gt;&lt;P&gt;&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;SET TimestampFormat='M/D/YYYY hh:mm';&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&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;Table:&lt;/STRONG&gt;&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;LOAD [Call Start Time],&lt;/STRONG&gt;&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;&amp;nbsp; Time(Floor([Call Start Time], (1/48)), 'hh:mm') &amp;amp; ' - ' &amp;amp;&amp;nbsp; Time(Ceil([Call Start Time], (1/48)), 'hh:mm') as Interval;&lt;/STRONG&gt;&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="color: #ff0000; font-style: inherit; font-family: inherit;"&gt;LOAD yourFieldsIncludingStartTimeField&lt;/STRONG&gt;&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="color: #ff0000; font-style: inherit; font-family: inherit;"&gt;FROM yourDataSource;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;HTH&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Best,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Sunny&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Oct 2015 00:02:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/half-hour-intervals/m-p/938356#M323767</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-10-26T00:02:10Z</dc:date>
    </item>
    <item>
      <title>Re: half hour intervals</title>
      <link>https://community.qlik.com/t5/QlikView/half-hour-intervals/m-p/938357#M323768</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;maybe you could also use the class() function.&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;regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Oct 2015 00:08:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/half-hour-intervals/m-p/938357#M323768</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2015-10-26T00:08:06Z</dc:date>
    </item>
  </channel>
</rss>

