<?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: Using If while loading in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Using-If-while-loading/m-p/423858#M1161979</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;what is the format of date column ? &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;Either timestamp or date ?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;If possible try this &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;Where Date(DATE,'DD/MM/YYYY')) &amp;lt;= Date('10/01/2013','DD/MM/YYYY'); &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;(or)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;Where Date(DATE,'DD/MM/YYYY hh:mm:ss')) &amp;lt;= Date('10/01/2013','DD/MM/YYYY hh:mm:ss');&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;Cheers!!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;Jagan &lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 12 Nov 2012 09:18:50 GMT</pubDate>
    <dc:creator>jagannalla</dc:creator>
    <dc:date>2012-11-12T09:18:50Z</dc:date>
    <item>
      <title>Using If while loading</title>
      <link>https://community.qlik.com/t5/QlikView/Using-If-while-loading/m-p/423854#M1161975</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;I want to use if clause while loading data/files in script.&lt;/P&gt;&lt;P&gt;My files are having date and want to stop the script to run/reload once date will reach specific date.&lt;/P&gt;&lt;P&gt;i.e. if DATE &amp;gt; 10/01/2013, the script will show me error and nothing will be loaded....&lt;/P&gt;&lt;P&gt;is it possible?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Nov 2012 08:46:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-If-while-loading/m-p/423854#M1161975</guid>
      <dc:creator />
      <dc:date>2012-11-12T08:46:47Z</dc:date>
    </item>
    <item>
      <title>Re: Using If while loading</title>
      <link>https://community.qlik.com/t5/QlikView/Using-If-while-loading/m-p/423855#M1161976</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try adding a where clause:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table1:&lt;/P&gt;&lt;P&gt;LOAD * &lt;/P&gt;&lt;P&gt;[myexcelfile.xls] (biff, embedded labels, table is Sheet1$)&lt;/P&gt;&lt;P&gt;Where Date#(DATE,'DD/MM/YYYY')) &amp;lt;= Date#('10/01/2013','DD/MM/YYYY');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With DATE being the field you want to filter on. This will not throw an error, but just not load anything with a date over 10/01/2013.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Nov 2012 08:57:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-If-while-loading/m-p/423855#M1161976</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2012-11-12T08:57:16Z</dc:date>
    </item>
    <item>
      <title>Re: Using If while loading</title>
      <link>https://community.qlik.com/t5/QlikView/Using-If-while-loading/m-p/423856#M1161977</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your reply.&lt;/P&gt;&lt;P&gt;Tried above but it's not loading data at all... even if my date is less than date 10/01/2013&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Nov 2012 09:09:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-If-while-loading/m-p/423856#M1161977</guid>
      <dc:creator />
      <dc:date>2012-11-12T09:09:16Z</dc:date>
    </item>
    <item>
      <title>Re: Using If while loading</title>
      <link>https://community.qlik.com/t5/QlikView/Using-If-while-loading/m-p/423857#M1161978</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your reply.&lt;/P&gt;&lt;P&gt;Tried above but it's not loading data at all... even if my date is less than date 10/01/2013&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Nov 2012 09:09:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-If-while-loading/m-p/423857#M1161978</guid>
      <dc:creator />
      <dc:date>2012-11-12T09:09:30Z</dc:date>
    </item>
    <item>
      <title>Re: Using If while loading</title>
      <link>https://community.qlik.com/t5/QlikView/Using-If-while-loading/m-p/423858#M1161979</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;what is the format of date column ? &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;Either timestamp or date ?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;If possible try this &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;Where Date(DATE,'DD/MM/YYYY')) &amp;lt;= Date('10/01/2013','DD/MM/YYYY'); &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;(or)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;Where Date(DATE,'DD/MM/YYYY hh:mm:ss')) &amp;lt;= Date('10/01/2013','DD/MM/YYYY hh:mm:ss');&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;Cheers!!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;Jagan &lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Nov 2012 09:18:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-If-while-loading/m-p/423858#M1161979</guid>
      <dc:creator>jagannalla</dc:creator>
      <dc:date>2012-11-12T09:18:50Z</dc:date>
    </item>
    <item>
      <title>Re: Using If while loading</title>
      <link>https://community.qlik.com/t5/QlikView/Using-If-while-loading/m-p/423859#M1161980</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Excellent.... working fine.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Nov 2012 09:45:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-If-while-loading/m-p/423859#M1161980</guid>
      <dc:creator />
      <dc:date>2012-11-12T09:45:21Z</dc:date>
    </item>
  </channel>
</rss>

