<?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: Where condition on load statement in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Where-condition-on-load-statement/m-p/380485#M1166764</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Brilliant post and very helpful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 19 Nov 2012 15:51:58 GMT</pubDate>
    <dc:creator />
    <dc:date>2012-11-19T15:51:58Z</dc:date>
    <item>
      <title>Where condition on load statement</title>
      <link>https://community.qlik.com/t5/QlikView/Where-condition-on-load-statement/m-p/380480#M1166758</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everyone&lt;/P&gt;&lt;P&gt;I'm trying to execute following statement:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD DATEID,WORKDAY_IN_MONTH AS WDIM,LAST_WORKDAY_IN_MONTH AS LWDIM &lt;/P&gt;&lt;P&gt;RESIDENT D_DATE WHERE DATEID=date(now(),'YYYY-MM-DD 00:00:00');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But table is empty. Record for today date exists in table. When I change sign = to &amp;lt;= table is loaded with data. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Aug 2012 15:22:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Where-condition-on-load-statement/m-p/380480#M1166758</guid>
      <dc:creator>salezian</dc:creator>
      <dc:date>2012-08-23T15:22:40Z</dc:date>
    </item>
    <item>
      <title>Re: Where condition on load statement</title>
      <link>https://community.qlik.com/t5/QlikView/Where-condition-on-load-statement/m-p/380481#M1166759</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;Marcin, Please try to declare in a variable and check if it works by using the variable in WHERE condition mentioned below.&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;LET v_LoadDate = date(now(),'YYYY-MM-DD 00:00:00');&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;TableA:&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;LOAD DATEID,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri,verdana,arial,sans-serif;"&gt;WORKDAY_IN_MONTH AS WDIM,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri,verdana,arial,sans-serif;"&gt;LAST_WORKDAY_IN_MONTH AS LWDIM &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri,verdana,arial,sans-serif;"&gt;RESIDENT D_DATE&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri,verdana,arial,sans-serif;"&gt;WHERE DATEID=&lt;STRONG&gt;'$(v_LoadDate)'&lt;/STRONG&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Aug 2012 15:26:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Where-condition-on-load-statement/m-p/380481#M1166759</guid>
      <dc:creator>manojkvrajan</dc:creator>
      <dc:date>2012-08-23T15:26:50Z</dc:date>
    </item>
    <item>
      <title>Re: Where condition on load statement</title>
      <link>https://community.qlik.com/t5/QlikView/Where-condition-on-load-statement/m-p/380482#M1166760</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It works. Thanks. Can you explain me what is the difference between my solution and yours (except that Yours is working &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Aug 2012 15:30:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Where-condition-on-load-statement/m-p/380482#M1166760</guid>
      <dc:creator>salezian</dc:creator>
      <dc:date>2012-08-23T15:30:01Z</dc:date>
    </item>
    <item>
      <title>Re: Where condition on load statement</title>
      <link>https://community.qlik.com/t5/QlikView/Where-condition-on-load-statement/m-p/380483#M1166761</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Marcin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load DATEID as Daystart(DATEID) in your load statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know if it works&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mhatim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Aug 2012 15:35:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Where-condition-on-load-statement/m-p/380483#M1166761</guid>
      <dc:creator />
      <dc:date>2012-08-23T15:35:07Z</dc:date>
    </item>
    <item>
      <title>Re: Where condition on load statement</title>
      <link>https://community.qlik.com/t5/QlikView/Where-condition-on-load-statement/m-p/380484#M1166763</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;Marcin, WHERE condition considers everything other than number as string. Time stamp will also be considered as string due to the spaces and special characters. Hence it is good to give within single quotes ('') or using a variable in single quotes (''). I hope this helps.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Aug 2012 15:42:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Where-condition-on-load-statement/m-p/380484#M1166763</guid>
      <dc:creator>manojkvrajan</dc:creator>
      <dc:date>2012-08-23T15:42:11Z</dc:date>
    </item>
    <item>
      <title>Re: Where condition on load statement</title>
      <link>https://community.qlik.com/t5/QlikView/Where-condition-on-load-statement/m-p/380485#M1166764</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Brilliant post and very helpful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Nov 2012 15:51:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Where-condition-on-load-statement/m-p/380485#M1166764</guid>
      <dc:creator />
      <dc:date>2012-11-19T15:51:58Z</dc:date>
    </item>
  </channel>
</rss>

