<?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 Intraday - 1 hour in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Intraday-1-hour/m-p/1252397#M396212</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi i have a report where it will execute loading of data @ 1015am. i would want the script to load everything except the current hour of the loading time as it is not a complete set of data. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;[$(vLoad)Data\Intraday\Data.qvd]&lt;/P&gt;&lt;P&gt;(qvd)&lt;/P&gt;&lt;P&gt;WHEREDate=(FileTime() - MakeTime(1));&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Something along this line but it doesnt work&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 16 Jan 2017 02:52:52 GMT</pubDate>
    <dc:creator>n1ef5ng1</dc:creator>
    <dc:date>2017-01-16T02:52:52Z</dc:date>
    <item>
      <title>Intraday - 1 hour</title>
      <link>https://community.qlik.com/t5/QlikView/Intraday-1-hour/m-p/1252397#M396212</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi i have a report where it will execute loading of data @ 1015am. i would want the script to load everything except the current hour of the loading time as it is not a complete set of data. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;[$(vLoad)Data\Intraday\Data.qvd]&lt;/P&gt;&lt;P&gt;(qvd)&lt;/P&gt;&lt;P&gt;WHEREDate=(FileTime() - MakeTime(1));&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Something along this line but it doesnt work&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jan 2017 02:52:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Intraday-1-hour/m-p/1252397#M396212</guid>
      <dc:creator>n1ef5ng1</dc:creator>
      <dc:date>2017-01-16T02:52:52Z</dc:date>
    </item>
    <item>
      <title>Re: Intraday - 1 hour</title>
      <link>https://community.qlik.com/t5/QlikView/Intraday-1-hour/m-p/1252398#M396213</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;WHEREDate &amp;lt;= &lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Timestamp&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;LocalTime&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;()-&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;MakeTime&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(1) ) &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;or&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;WHEREDate &amp;lt;= &lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Timestamp&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Now&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;()-&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;MakeTime&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(1) ) &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jan 2017 04:50:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Intraday-1-hour/m-p/1252398#M396213</guid>
      <dc:creator>girirajsinh</dc:creator>
      <dc:date>2017-01-16T04:50:52Z</dc:date>
    </item>
    <item>
      <title>Re: Intraday - 1 hour</title>
      <link>https://community.qlik.com/t5/QlikView/Intraday-1-hour/m-p/1252399#M396214</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Ben,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the Data.qvd file contains the Date and Time components then use below predicate logic in filter condition:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHERE Date &amp;lt;= Today() &amp;amp; ' ' &amp;amp; MakeTime(Hour(Now())-1,Minute(Now()), Second(Now()))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;P.S.: This is verify basic logic you can make use Date and Time functions to fine tune it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards!&lt;/P&gt;&lt;P&gt;Rahul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jan 2017 10:08:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Intraday-1-hour/m-p/1252399#M396214</guid>
      <dc:creator>rahulpawarb</dc:creator>
      <dc:date>2017-01-16T10:08:22Z</dc:date>
    </item>
  </channel>
</rss>

