<?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: order by not working in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/order-by-not-working/m-p/782166#M1043933</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this way also&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is working try to click on Ctrl + T and see the difference.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Once load without the order table and see Ctrl + T.&lt;/P&gt;&lt;P&gt;2. Then add the Order table and then see Ctrl + T&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You seethere is order by try to load data in the table with sorted order&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or you can do by adding RecNo() as Rec or RowNo() as Rowid&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NoConcatenate&lt;/P&gt;&lt;P&gt;ABC1:&lt;/P&gt;&lt;P&gt;LOAD NO,NAME,MARKS,&lt;STRONG&gt;RecNo() as Rec&lt;/STRONG&gt;&amp;nbsp; Resident TAB1 Order BY NAME;&lt;/P&gt;&lt;P&gt;DROP TABLE TAB1; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anand&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 05 Dec 2014 10:44:48 GMT</pubDate>
    <dc:creator>its_anandrjs</dc:creator>
    <dc:date>2014-12-05T10:44:48Z</dc:date>
    <item>
      <title>order by not working</title>
      <link>https://community.qlik.com/t5/QlikView/order-by-not-working/m-p/782158#M1043925</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi gurus,&lt;/P&gt;&lt;P&gt;below is the simple code I am having&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TAB1:&lt;/P&gt;&lt;P&gt;load NO, NAME,MARKS FROM D:\TRIAL.XLS (ooxml,embedded labels, table is Sheet1);&lt;/P&gt;&lt;P&gt;Noconcatenate&lt;/P&gt;&lt;P&gt;ABC1:&lt;/P&gt;&lt;P&gt;Load NO, NAME,MARKS&amp;nbsp; resident TAB1 Order by NAME;&lt;/P&gt;&lt;P&gt;drop table TAB1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In result I found that Order by clause do not work. I have tried different combinations i.e. NO , NUM(NO) , NAME but it doesn't work.&lt;/P&gt;&lt;P&gt;Pls. suggest me the solution&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Dec 2014 09:55:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/order-by-not-working/m-p/782158#M1043925</guid>
      <dc:creator>rahulhv1</dc:creator>
      <dc:date>2014-12-05T09:55:21Z</dc:date>
    </item>
    <item>
      <title>Re: order by not working</title>
      <link>https://community.qlik.com/t5/QlikView/order-by-not-working/m-p/782159#M1043926</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It should work, could you please send the reult?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Dec 2014 09:56:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/order-by-not-working/m-p/782159#M1043926</guid>
      <dc:creator>alexandros17</dc:creator>
      <dc:date>2014-12-05T09:56:54Z</dc:date>
    </item>
    <item>
      <title>Re: order by not working</title>
      <link>https://community.qlik.com/t5/QlikView/order-by-not-working/m-p/782160#M1043927</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try adding 'RowNo() as RowNumber' to your ABC1 load to confirm that it's not working.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You could also try t create a chart using your sorted dimension, and sort by Load Order.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you still have an issue could you post some of the affected data?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Dec 2014 10:06:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/order-by-not-working/m-p/782160#M1043927</guid>
      <dc:creator>marcus_malinow</dc:creator>
      <dc:date>2014-12-05T10:06:13Z</dc:date>
    </item>
    <item>
      <title>Re: order by not working</title>
      <link>https://community.qlik.com/t5/QlikView/order-by-not-working/m-p/782161#M1043928</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The order shoudl work fine, maybe try to specify the ordering you want&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Order By NAME asc&lt;/P&gt;&lt;P&gt;for example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope that helps&lt;/P&gt;&lt;P&gt;Joe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Dec 2014 10:10:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/order-by-not-working/m-p/782161#M1043928</guid>
      <dc:creator />
      <dc:date>2014-12-05T10:10:30Z</dc:date>
    </item>
    <item>
      <title>Re: order by not working</title>
      <link>https://community.qlik.com/t5/QlikView/order-by-not-working/m-p/782162#M1043929</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;maybe there are leading or trailing charachters ... try with trim(NAME)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Dec 2014 10:12:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/order-by-not-working/m-p/782162#M1043929</guid>
      <dc:creator>alexandros17</dc:creator>
      <dc:date>2014-12-05T10:12:26Z</dc:date>
    </item>
    <item>
      <title>Re: order by not working</title>
      <link>https://community.qlik.com/t5/QlikView/order-by-not-working/m-p/782163#M1043930</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;how to attach document in reply?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Dec 2014 10:21:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/order-by-not-working/m-p/782163#M1043930</guid>
      <dc:creator>rahulhv1</dc:creator>
      <dc:date>2014-12-05T10:21:23Z</dc:date>
    </item>
    <item>
      <title>Re: order by not working</title>
      <link>https://community.qlik.com/t5/QlikView/order-by-not-working/m-p/782164#M1043931</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Did you drop tab1?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;Rajesh Vaswa&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Dec 2014 10:30:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/order-by-not-working/m-p/782164#M1043931</guid>
      <dc:creator>rajeshvaswani77</dc:creator>
      <dc:date>2014-12-05T10:30:41Z</dc:date>
    </item>
    <item>
      <title>Re: order by not working</title>
      <link>https://community.qlik.com/t5/QlikView/order-by-not-working/m-p/782165#M1043932</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Its working ... just check it out once&lt;/P&gt;&lt;P&gt;ABC1:&lt;BR /&gt;Load NO,Name,Marks,RecNo() as Count&lt;/P&gt;&lt;P&gt;Resident TAB1&lt;/P&gt;&lt;P&gt;Order by NO desc;&amp;nbsp;&amp;nbsp;&amp;nbsp; // order by asc either of them will work&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Dec 2014 10:32:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/order-by-not-working/m-p/782165#M1043932</guid>
      <dc:creator />
      <dc:date>2014-12-05T10:32:19Z</dc:date>
    </item>
    <item>
      <title>Re: order by not working</title>
      <link>https://community.qlik.com/t5/QlikView/order-by-not-working/m-p/782166#M1043933</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this way also&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is working try to click on Ctrl + T and see the difference.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Once load without the order table and see Ctrl + T.&lt;/P&gt;&lt;P&gt;2. Then add the Order table and then see Ctrl + T&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You seethere is order by try to load data in the table with sorted order&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or you can do by adding RecNo() as Rec or RowNo() as Rowid&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NoConcatenate&lt;/P&gt;&lt;P&gt;ABC1:&lt;/P&gt;&lt;P&gt;LOAD NO,NAME,MARKS,&lt;STRONG&gt;RecNo() as Rec&lt;/STRONG&gt;&amp;nbsp; Resident TAB1 Order BY NAME;&lt;/P&gt;&lt;P&gt;DROP TABLE TAB1; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anand&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Dec 2014 10:44:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/order-by-not-working/m-p/782166#M1043933</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2014-12-05T10:44:48Z</dc:date>
    </item>
    <item>
      <title>Re: order by not working</title>
      <link>https://community.qlik.com/t5/QlikView/order-by-not-working/m-p/782167#M1043934</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;even this is not working. have u seen my qvw &amp;amp; xls file that I have attached?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Dec 2014 11:50:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/order-by-not-working/m-p/782167#M1043934</guid>
      <dc:creator>rahulhv1</dc:creator>
      <dc:date>2014-12-05T11:50:53Z</dc:date>
    </item>
    <item>
      <title>Re: order by not working</title>
      <link>https://community.qlik.com/t5/QlikView/order-by-not-working/m-p/782168#M1043935</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what attachments.....?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Dec 2014 11:53:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/order-by-not-working/m-p/782168#M1043935</guid>
      <dc:creator />
      <dc:date>2014-12-05T11:53:24Z</dc:date>
    </item>
    <item>
      <title>Re: order by not working</title>
      <link>https://community.qlik.com/t5/QlikView/order-by-not-working/m-p/782169#M1043936</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you please attach an example?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;Rajesh Vaswani&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Dec 2014 11:54:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/order-by-not-working/m-p/782169#M1043936</guid>
      <dc:creator>rajeshvaswani77</dc:creator>
      <dc:date>2014-12-05T11:54:37Z</dc:date>
    </item>
    <item>
      <title>Re: order by not working</title>
      <link>https://community.qlik.com/t5/QlikView/order-by-not-working/m-p/782170#M1043937</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;First question: Why do you want to do a resident load of a table?&lt;/P&gt;&lt;P&gt;Though I have not tried a solution myself, I will guess it should work, if you rename your fields in the resident load.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The reason, that you see this behaviour, is that you have already loaded the fields &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;NO, NAME,MARKS into the datamodel in TAB1. When you load the same tables in ABC1, the fields will be sorted just as in TAB1.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ie. If you load a table like this:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;FieldA&lt;/P&gt;&lt;P&gt;B&lt;/P&gt;&lt;P&gt;C&lt;/P&gt;&lt;P&gt;A&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The following data loaded into QV, will be sorted just like FieldA (providing FieldA) exists in that table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Dec 2014 12:18:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/order-by-not-working/m-p/782170#M1043937</guid>
      <dc:creator>martin_dideriks</dc:creator>
      <dc:date>2014-12-05T12:18:10Z</dc:date>
    </item>
    <item>
      <title>Re: order by not working</title>
      <link>https://community.qlik.com/t5/QlikView/order-by-not-working/m-p/782171#M1043938</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this way and make this settings in the table box remove all sort settings in the properties and use only load order after order by for all fields and also try to load like in this sequence Name,No,Marks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;TAB1:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt; LOAD &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; NAME,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; NO, &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MARKS&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;FROM&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;TRIAL.xlsx&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;(ooxml, embedded labels, table is Sheet1);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;NoConcatenate&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;ABC1:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;LOAD NAME,NO,MARKS,RecNo() as Rec&amp;nbsp; Resident TAB1 Order BY NAME;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;DROP TABLE TAB1; &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="sortload.png" class="jive-image" src="https://community.qlik.com/legacyfs/online/72850_sortload.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anand&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Dec 2014 12:32:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/order-by-not-working/m-p/782171#M1043938</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2014-12-05T12:32:49Z</dc:date>
    </item>
  </channel>
</rss>

