<?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: Sorting Issue in Current Selection Box. in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Sorting-Issue-in-Current-Selection-Box/m-p/388635#M145032</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Inna, I made a mistake. Order by can only be done on a resident load. So first load your data into a table and then do another resident load from that table with the order by clause. I've fixed the code above.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 12 Feb 2013 19:12:06 GMT</pubDate>
    <dc:creator>Gysbert_Wassenaar</dc:creator>
    <dc:date>2013-02-12T19:12:06Z</dc:date>
    <item>
      <title>Sorting Issue in Current Selection Box.</title>
      <link>https://community.qlik.com/t5/QlikView/Sorting-Issue-in-Current-Selection-Box/m-p/388629#M145026</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Guys here is my issue:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have filter called Country.I am using a mulitbox for this in which I have sorfted it TEXT "A-Z".&lt;/P&gt;&lt;P&gt;List of countires has been sorted in the multibox but the values of the same field "country" in not sorted in the Current selection box.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why is it so?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have attached two imges for your review: One from Multibox and one from Current Selection Box.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please advise.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TA&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Nov 2012 21:24:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sorting-Issue-in-Current-Selection-Box/m-p/388629#M145026</guid>
      <dc:creator />
      <dc:date>2012-11-28T21:24:18Z</dc:date>
    </item>
    <item>
      <title>Re: Sorting Issue in Current Selection Box.</title>
      <link>https://community.qlik.com/t5/QlikView/Sorting-Issue-in-Current-Selection-Box/m-p/388630#M145027</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As far as I know the currentselections box sorts the data in the order it was loaded. Unfortunately there seems to be no way to change the sorting order in the currentselections box other than doing the sorting in the load script.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Nov 2012 09:14:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sorting-Issue-in-Current-Selection-Box/m-p/388630#M145027</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2012-11-29T09:14:44Z</dc:date>
    </item>
    <item>
      <title>Re: Sorting Issue in Current Selection Box.</title>
      <link>https://community.qlik.com/t5/QlikView/Sorting-Issue-in-Current-Selection-Box/m-p/388631#M145028</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How can I sort the values in script statement/load script? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Nov 2012 17:11:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sorting-Issue-in-Current-Selection-Box/m-p/388631#M145028</guid>
      <dc:creator />
      <dc:date>2012-11-29T17:11:56Z</dc:date>
    </item>
    <item>
      <title>Re: Sorting Issue in Current Selection Box.</title>
      <link>https://community.qlik.com/t5/QlikView/Sorting-Issue-in-Current-Selection-Box/m-p/388632#M145029</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use an order by clause:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Temp:&lt;/P&gt;&lt;P&gt;Load Region, SalesPerson, Date, Product, Amount, Sales&lt;/P&gt;&lt;P&gt;from test.qvd (qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Result:&lt;/P&gt;&lt;P&gt;Load * resident Temp&lt;/P&gt;&lt;P&gt;order by Region, SalesPerson, Date desc;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Drop Table Temp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will sort the data loaded from test.qvd first by Region ascending and SalesPerson ascending and then by Date descending.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;edit: fixed a mistake using order by on a non-resident table&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Nov 2012 17:45:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sorting-Issue-in-Current-Selection-Box/m-p/388632#M145029</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2012-11-29T17:45:55Z</dc:date>
    </item>
    <item>
      <title>Re: Sorting Issue in Current Selection Box.</title>
      <link>https://community.qlik.com/t5/QlikView/Sorting-Issue-in-Current-Selection-Box/m-p/388633#M145030</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you send me an example of that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have mulitple fields in one QVD and I just want to sort only one field not the complete set of data. How I can write a loda statment for only one field?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Nov 2012 18:20:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sorting-Issue-in-Current-Selection-Box/m-p/388633#M145030</guid>
      <dc:creator />
      <dc:date>2012-11-29T18:20:27Z</dc:date>
    </item>
    <item>
      <title>Re: Sorting Issue in Current Selection Box.</title>
      <link>https://community.qlik.com/t5/QlikView/Sorting-Issue-in-Current-Selection-Box/m-p/388634#M145031</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gysbert,&lt;/P&gt;&lt;P&gt;I have the same problem.&lt;/P&gt;&lt;P&gt;So I tried your advise. But , unfortunately it did not work for me.&lt;/P&gt;&lt;P&gt;My script is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TempNetworkDomainData:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD *&lt;/P&gt;&lt;P&gt;FROM D:\QlikView\YbrantDigital\Qvd\sql_data\DAILY_ADX_4_2_2013.qvd(qvd) order by company;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;concatenate&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD *&lt;/P&gt;&lt;P&gt;FROM D:\QlikView\YbrantDigital\Qvd\sql_data\DAILY_RA_4_2_2013.qvd(qvd) order by company;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I wanted to order by company, because it is not sorted in current selection despite the fact it is sorted in multi selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But while I reload the model I am getting error :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Garbage after statement&lt;/P&gt;&lt;P&gt;TempNetworkDomainData:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD *&lt;/P&gt;&lt;P&gt;FROM D:\QlikView\YbrantDigital\Qvd\sql_data\DAILY_ADX_4_2_2013.qvd(qvd) order by company&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What should I do?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Inna.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Feb 2013 08:08:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sorting-Issue-in-Current-Selection-Box/m-p/388634#M145031</guid>
      <dc:creator />
      <dc:date>2013-02-11T08:08:58Z</dc:date>
    </item>
    <item>
      <title>Re: Sorting Issue in Current Selection Box.</title>
      <link>https://community.qlik.com/t5/QlikView/Sorting-Issue-in-Current-Selection-Box/m-p/388635#M145032</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Inna, I made a mistake. Order by can only be done on a resident load. So first load your data into a table and then do another resident load from that table with the order by clause. I've fixed the code above.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Feb 2013 19:12:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sorting-Issue-in-Current-Selection-Box/m-p/388635#M145032</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2013-02-12T19:12:06Z</dc:date>
    </item>
    <item>
      <title>Re: Sorting Issue in Current Selection Box.</title>
      <link>https://community.qlik.com/t5/QlikView/Sorting-Issue-in-Current-Selection-Box/m-p/388636#M145033</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorting in selection box is controlled by settings in [&lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri','sans-serif'; color: #1f497d;"&gt;Document Properties/Sort]&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Apr 2015 10:02:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sorting-Issue-in-Current-Selection-Box/m-p/388636#M145033</guid>
      <dc:creator />
      <dc:date>2015-04-29T10:02:34Z</dc:date>
    </item>
    <item>
      <title>Re: Sorting Issue in Current Selection Box.</title>
      <link>https://community.qlik.com/t5/QlikView/Sorting-Issue-in-Current-Selection-Box/m-p/388637#M145034</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks a lot, Jerrik.&lt;/P&gt;&lt;P&gt;This solved our problem!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Oct 2016 15:34:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sorting-Issue-in-Current-Selection-Box/m-p/388637#M145034</guid>
      <dc:creator>t_witzgall</dc:creator>
      <dc:date>2016-10-17T15:34:38Z</dc:date>
    </item>
    <item>
      <title>Re: Sorting Issue in Current Selection Box.</title>
      <link>https://community.qlik.com/t5/QlikView/Sorting-Issue-in-Current-Selection-Box/m-p/1531506#M438771</link>
      <description>&lt;P&gt;Where can I find that in Qliksense? In Qliksense it is always alphabetically sorted.&lt;/P&gt;</description>
      <pubDate>Thu, 17 Jan 2019 12:02:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sorting-Issue-in-Current-Selection-Box/m-p/1531506#M438771</guid>
      <dc:creator>pravinkumar_s</dc:creator>
      <dc:date>2019-01-17T12:02:28Z</dc:date>
    </item>
  </channel>
</rss>

