<?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 Timeline in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Timeline/m-p/295919#M581506</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Folks!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My problem:&lt;/P&gt;&lt;P&gt;I have datas regarding phonecalls:&lt;/P&gt;&lt;P&gt;There are customes, whose names are known as name, the date, start- and the endtime of the phonecalls. &lt;/P&gt;&lt;P&gt;I shall show the ammount of phonecalls in every second during a day.&lt;/P&gt;&lt;P&gt;The script looks like: &lt;/P&gt;&lt;P&gt;Call_Information:&lt;/P&gt;&lt;P&gt;LOAD Name,&lt;/P&gt;&lt;P&gt; date(Start) as Startday,&lt;/P&gt;&lt;P&gt; time(Start) as Starttime,&lt;/P&gt;&lt;P&gt; date(End) as Endday,&lt;/P&gt;&lt;P&gt; time(End) as Endtime&lt;/P&gt;&lt;P&gt;FROM [Test.xlsx]&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Tabelle1);&lt;/P&gt;&lt;P&gt;The Listboxes i created to check the values all include the correct values. &lt;/P&gt;&lt;P&gt;Now i should have a diagramm (bar, line and flat table) in which i shall show the ammount of calls per second. The counting shall be that every call which is allready started is counted + the calls starting within this second. So far nor problem -&amp;gt; count(if(Starttime&amp;lt;=Timestamp and Endtime&amp;gt;=Timestamp ,Name)). The issue is, that i need the timestamp for every second as dimension, from 00:00:00 to 23:59:59. Maybe someone has an idea how to solve this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 13 Dec 2011 08:58:15 GMT</pubDate>
    <dc:creator />
    <dc:date>2011-12-13T08:58:15Z</dc:date>
    <item>
      <title>Timeline</title>
      <link>https://community.qlik.com/t5/QlikView/Timeline/m-p/295919#M581506</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Folks!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My problem:&lt;/P&gt;&lt;P&gt;I have datas regarding phonecalls:&lt;/P&gt;&lt;P&gt;There are customes, whose names are known as name, the date, start- and the endtime of the phonecalls. &lt;/P&gt;&lt;P&gt;I shall show the ammount of phonecalls in every second during a day.&lt;/P&gt;&lt;P&gt;The script looks like: &lt;/P&gt;&lt;P&gt;Call_Information:&lt;/P&gt;&lt;P&gt;LOAD Name,&lt;/P&gt;&lt;P&gt; date(Start) as Startday,&lt;/P&gt;&lt;P&gt; time(Start) as Starttime,&lt;/P&gt;&lt;P&gt; date(End) as Endday,&lt;/P&gt;&lt;P&gt; time(End) as Endtime&lt;/P&gt;&lt;P&gt;FROM [Test.xlsx]&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Tabelle1);&lt;/P&gt;&lt;P&gt;The Listboxes i created to check the values all include the correct values. &lt;/P&gt;&lt;P&gt;Now i should have a diagramm (bar, line and flat table) in which i shall show the ammount of calls per second. The counting shall be that every call which is allready started is counted + the calls starting within this second. So far nor problem -&amp;gt; count(if(Starttime&amp;lt;=Timestamp and Endtime&amp;gt;=Timestamp ,Name)). The issue is, that i need the timestamp for every second as dimension, from 00:00:00 to 23:59:59. Maybe someone has an idea how to solve this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Dec 2011 08:58:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Timeline/m-p/295919#M581506</guid>
      <dc:creator />
      <dc:date>2011-12-13T08:58:15Z</dc:date>
    </item>
    <item>
      <title>Re: Timeline</title>
      <link>https://community.qlik.com/t5/QlikView/Timeline/m-p/295920#M581507</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To all interested folks, here is my solution:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Time_Tmp:&lt;/P&gt;&lt;P&gt;LET n = num($(vTimeChange));&lt;/P&gt;&lt;P&gt;DO while n&amp;lt;=$(vTimeEnd)&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;($(vTimeStart) + ($(n)-$(vTimeChange))) as Time_Tmp&lt;/P&gt;&lt;P&gt;AutoGenerate 1;&lt;/P&gt;&lt;P&gt;LET n = num(n + $(vTimeChange));&lt;/P&gt;&lt;P&gt;LOOP&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET DecimalSep=',';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Time:&lt;/P&gt;&lt;P&gt;LOAD Time(Floor(Time_Tmp,0.000000001),'hh:mm:ss') as Time_Dim&lt;/P&gt;&lt;P&gt;Resident Time_Tmp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DROP Table Time_Tmp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Oct 2012 09:13:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Timeline/m-p/295920#M581507</guid>
      <dc:creator />
      <dc:date>2012-10-16T09:13:13Z</dc:date>
    </item>
  </channel>
</rss>

