<?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 question about load order in Qlik Learning Discussions</title>
    <link>https://community.qlik.com/t5/Qlik-Learning-Discussions/question-about-load-order/m-p/819688#M2852</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'd like to change the order of values in the field Brand while loading the data from the source table. I need to set an alphabetical order of brands while loading the field Brand. How is that possible?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Larisa&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 17 Mar 2015 13:18:29 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2015-03-17T13:18:29Z</dc:date>
    <item>
      <title>question about load order</title>
      <link>https://community.qlik.com/t5/Qlik-Learning-Discussions/question-about-load-order/m-p/819688#M2852</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'd like to change the order of values in the field Brand while loading the data from the source table. I need to set an alphabetical order of brands while loading the field Brand. How is that possible?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Larisa&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Mar 2015 13:18:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Learning-Discussions/question-about-load-order/m-p/819688#M2852</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-03-17T13:18:29Z</dc:date>
    </item>
    <item>
      <title>Re: question about load order</title>
      <link>https://community.qlik.com/t5/Qlik-Learning-Discussions/question-about-load-order/m-p/819689#M2853</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Larisa, in the Sort tab you can set the order of any chart.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyway, if you want the load order in QV to be by Brand you can do:&lt;/P&gt;&lt;P&gt;Excel:&lt;/P&gt;&lt;P&gt;LOAD Brand, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Cost RUB], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; F3, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; F4&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;[.\brand_data2.xlsx]&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is data);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data:&lt;/P&gt;&lt;P&gt;NoConcatenate LOAD * Resident Excel Order By Brand;&lt;/P&gt;&lt;P&gt;DROP table Excel;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Mar 2015 14:00:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Learning-Discussions/question-about-load-order/m-p/819689#M2853</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2015-03-17T14:00:25Z</dc:date>
    </item>
    <item>
      <title>Re: question about load order</title>
      <link>https://community.qlik.com/t5/Qlik-Learning-Discussions/question-about-load-order/m-p/819690#M2854</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I did as suggested. Then I created a list-box and set the load order for this list-box. But I see that the &lt;SPAN style="font-size: 13.3333330154419px;"&gt;load &lt;/SPAN&gt;order is not alphabetic. See the file attached.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Mar 2015 15:34:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Learning-Discussions/question-about-load-order/m-p/819690#M2854</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-03-17T15:34:20Z</dc:date>
    </item>
    <item>
      <title>Re: question about load order</title>
      <link>https://community.qlik.com/t5/Qlik-Learning-Discussions/question-about-load-order/m-p/819691#M2855</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;OK, as it is the same field, the loading sort order for Brand is set in the first load, you can try with:&lt;/P&gt;&lt;P&gt;Source1:&lt;/P&gt;&lt;P&gt;LOAD Brand as Brand_Orig,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Cost RUB]&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;.\brand_data2.xlsx&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is data)&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data1:&lt;/P&gt;&lt;P&gt;NoConcatenate LOAD Brand_Orig as Brand, [Cost RUB] Resident Source1 Order By Brand_Orig&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;DROP table Source1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This way the load order of Brand_Orig don't mess with the load order of Brand.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Mar 2015 15:38:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Learning-Discussions/question-about-load-order/m-p/819691#M2855</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2015-03-17T15:38:58Z</dc:date>
    </item>
    <item>
      <title>Re: question about load order</title>
      <link>https://community.qlik.com/t5/Qlik-Learning-Discussions/question-about-load-order/m-p/819692#M2856</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Larisa,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you list box is set to load order, set it to Text A-Z&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Andy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Mar 2015 15:42:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Learning-Discussions/question-about-load-order/m-p/819692#M2856</guid>
      <dc:creator>awhitfield</dc:creator>
      <dc:date>2015-03-17T15:42:03Z</dc:date>
    </item>
  </channel>
</rss>

