<?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: How to load using where and order by in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-load-using-where-and-order-by/m-p/639223#M678244</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Could you post your script piece?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 04 Jun 2014 12:45:42 GMT</pubDate>
    <dc:creator>tresB</dc:creator>
    <dc:date>2014-06-04T12:45:42Z</dc:date>
    <item>
      <title>How to load using where and order by</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-load-using-where-and-order-by/m-p/639215#M678236</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;i want to load a&amp;nbsp; column emp_name from a table employees using order by and where clause.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where emp_id is 1,2,3.&lt;/P&gt;&lt;P&gt;orderby emp_id.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i need to load this through script&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jun 2014 11:37:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-load-using-where-and-order-by/m-p/639215#M678236</guid>
      <dc:creator />
      <dc:date>2014-06-04T11:37:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to load using where and order by</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-load-using-where-and-order-by/m-p/639216#M678237</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where Match(emp_id,1,2,3) &amp;gt; 0&lt;/P&gt;&lt;P&gt;Order By emp_id&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jun 2014 11:40:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-load-using-where-and-order-by/m-p/639216#M678237</guid>
      <dc:creator>nagaiank</dc:creator>
      <dc:date>2014-06-04T11:40:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to load using where and order by</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-load-using-where-and-order-by/m-p/639217#M678238</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, possibly she was asking for where part. '&amp;gt;0' part is redundant here, try like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where Match(emp_id,1,2,3) Order By emp_id&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jun 2014 11:44:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-load-using-where-and-order-by/m-p/639217#M678238</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2014-06-04T11:44:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to load using where and order by</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-load-using-where-and-order-by/m-p/639218#M678239</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD EMPNO,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ENAME,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; JOB,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; MGR,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; HIREDATE,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; SAL,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; COMM,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; DEPTNO&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Where Match('EMPNO', 1,2,3);&lt;/P&gt;&lt;P&gt;SQL SELECT *&lt;/P&gt;&lt;P&gt;FROM SCOTT.EMP&lt;/P&gt;&lt;P&gt;Order By EMPNO&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jun 2014 11:47:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-load-using-where-and-order-by/m-p/639218#M678239</guid>
      <dc:creator>satishkurra</dc:creator>
      <dc:date>2014-06-04T11:47:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to load using where and order by</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-load-using-where-and-order-by/m-p/639219#M678240</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try With this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tmpSource:&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;*,&lt;/P&gt;&lt;P&gt;emp_id&lt;/P&gt;&lt;P&gt;From Location;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Noconcatenate&lt;/P&gt;&lt;P&gt;FinalTable:&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;*,&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;emp_id&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;resident tmpSource&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;where Match(emp_id,1,2,3)&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;order by emp_id &lt;STRONG&gt;Asc;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;Drop Table tmpSource;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jun 2014 11:51:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-load-using-where-and-order-by/m-p/639219#M678240</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2014-06-04T11:51:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to load using where and order by</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-load-using-where-and-order-by/m-p/639220#M678241</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;it is showing script syntax error in&amp;nbsp; orderby emp_id Asc;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jun 2014 12:09:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-load-using-where-and-order-by/m-p/639220#M678241</guid>
      <dc:creator />
      <dc:date>2014-06-04T12:09:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to load using where and order by</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-load-using-where-and-order-by/m-p/639221#M678242</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Put space between Order By &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eg:-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Order By emp_id &lt;/SPAN&gt;&lt;STRONG style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Asc;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jun 2014 12:13:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-load-using-where-and-order-by/m-p/639221#M678242</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2014-06-04T12:13:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to load using where and order by</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-load-using-where-and-order-by/m-p/639222#M678243</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i tried after loading it is showing garbage statement after non concatenate&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jun 2014 12:39:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-load-using-where-and-order-by/m-p/639222#M678243</guid>
      <dc:creator />
      <dc:date>2014-06-04T12:39:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to load using where and order by</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-load-using-where-and-order-by/m-p/639223#M678244</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Could you post your script piece?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jun 2014 12:45:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-load-using-where-and-order-by/m-p/639223#M678244</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2014-06-04T12:45:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to load using where and order by</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-load-using-where-and-order-by/m-p/639224#M678245</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;we need to keep the where condition after mentioning the table name .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jun 2014 12:48:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-load-using-where-and-order-by/m-p/639224#M678245</guid>
      <dc:creator>vardhancse</dc:creator>
      <dc:date>2014-06-04T12:48:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to load using where and order by</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-load-using-where-and-order-by/m-p/639225#M678246</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try with this &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tmpSource:&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;*,&lt;/P&gt;&lt;P&gt;emp_id&lt;/P&gt;&lt;P&gt;From Location;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Noconcatenate&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;FinalTable:&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;*,&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;emp_id&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;resident &lt;STRONG&gt;tmpSource&lt;/STRONG&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;where Match(emp_id,1,2,3)&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;order by emp_id &lt;STRONG&gt;Asc;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;Drop Table tmpSource;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jun 2014 12:50:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-load-using-where-and-order-by/m-p/639225#M678246</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2014-06-04T12:50:07Z</dc:date>
    </item>
  </channel>
</rss>

