<?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 in Management &amp; Governance</title>
    <link>https://community.qlik.com/t5/Management-Governance/Sorting/m-p/2000703#M23656</link>
    <description>&lt;P&gt;You may apply a conditional function for the sorting like:&lt;/P&gt;
&lt;P&gt;pick(match(Field,&amp;nbsp;&lt;SPAN&gt;3 4 5 6 7 8 9 0 1 2),&amp;nbsp;0 1 2 3 4 5 6 7 8 9) // with commas instead spaces as value-delimiter&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Another method would be to pre-load your values, like:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;temp: load * inline [&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;Field&lt;BR /&gt;3&lt;BR /&gt;4&lt;BR /&gt;...];&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;then loading your origin data and after it removing the temp-table again. Now you could use the load-order for the sorting.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;- Marcus&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 04 Nov 2022 13:28:14 GMT</pubDate>
    <dc:creator>marcus_sommer</dc:creator>
    <dc:date>2022-11-04T13:28:14Z</dc:date>
    <item>
      <title>Sorting</title>
      <link>https://community.qlik.com/t5/Management-Governance/Sorting/m-p/2000686#M23655</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;i have data that goes from 0 to 10. I want to create a filter pane that would start at 3 and go to 2. Example:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;0 1 2 3 4 5 6 7 8 9 -&amp;gt;&amp;nbsp;3 4 5 6 7 8 9 0 1 2&lt;/P&gt;
&lt;P&gt;how would i do this?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 04 Nov 2022 12:59:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Management-Governance/Sorting/m-p/2000686#M23655</guid>
      <dc:creator>qliker3</dc:creator>
      <dc:date>2022-11-04T12:59:36Z</dc:date>
    </item>
    <item>
      <title>Re: Sorting</title>
      <link>https://community.qlik.com/t5/Management-Governance/Sorting/m-p/2000703#M23656</link>
      <description>&lt;P&gt;You may apply a conditional function for the sorting like:&lt;/P&gt;
&lt;P&gt;pick(match(Field,&amp;nbsp;&lt;SPAN&gt;3 4 5 6 7 8 9 0 1 2),&amp;nbsp;0 1 2 3 4 5 6 7 8 9) // with commas instead spaces as value-delimiter&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Another method would be to pre-load your values, like:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;temp: load * inline [&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;Field&lt;BR /&gt;3&lt;BR /&gt;4&lt;BR /&gt;...];&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;then loading your origin data and after it removing the temp-table again. Now you could use the load-order for the sorting.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;- Marcus&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 04 Nov 2022 13:28:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Management-Governance/Sorting/m-p/2000703#M23656</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2022-11-04T13:28:14Z</dc:date>
    </item>
    <item>
      <title>Re: Sorting</title>
      <link>https://community.qlik.com/t5/Management-Governance/Sorting/m-p/2001302#M23664</link>
      <description>&lt;P&gt;it has set the sorting to&amp;nbsp;&lt;SPAN&gt;0 1 2 3 4 5 6 7 8 9 instead of&amp;nbsp;3 4 5 6 7 8 9 0 1 2. How can this be fixed?&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Nov 2022 15:47:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Management-Governance/Sorting/m-p/2001302#M23664</guid>
      <dc:creator>qliker3</dc:creator>
      <dc:date>2022-11-07T15:47:57Z</dc:date>
    </item>
    <item>
      <title>Re: Sorting</title>
      <link>https://community.qlik.com/t5/Management-Governance/Sorting/m-p/2001513#M23674</link>
      <description>&lt;P&gt;The load-approach like suggested should work but the expression has a logical error because the pick() isn't set right respectively wouldn't be needed for this scenario. Therefore change it to:&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;match(Field,&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;3, 4, 5, 6, 7, 8, 9, 0, 1, 2)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;- Marcus&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Nov 2022 06:25:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Management-Governance/Sorting/m-p/2001513#M23674</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2022-11-08T06:25:13Z</dc:date>
    </item>
    <item>
      <title>Re: Sorting</title>
      <link>https://community.qlik.com/t5/Management-Governance/Sorting/m-p/2003421#M23719</link>
      <description>&lt;P&gt;so my actual sorting is from 0 to 24. And after applying your recent coment i get a weird sorting order:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="qliker3_0-1668156497756.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/93490iCE179F33031985DA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="qliker3_0-1668156497756.png" alt="qliker3_0-1668156497756.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Regards&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 11 Nov 2022 08:48:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Management-Governance/Sorting/m-p/2003421#M23719</guid>
      <dc:creator>qliker3</dc:creator>
      <dc:date>2022-11-11T08:48:57Z</dc:date>
    </item>
    <item>
      <title>Re: Sorting</title>
      <link>https://community.qlik.com/t5/Management-Governance/Sorting/m-p/2003423#M23720</link>
      <description>&lt;P&gt;If the range of numbers is different you will need to adapt the sorting-measures appropriate. Further you need to ensure that this sorting is also applied as the first sorting-option.&lt;/P&gt;
&lt;P&gt;- Marcus&lt;/P&gt;</description>
      <pubDate>Fri, 11 Nov 2022 08:57:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Management-Governance/Sorting/m-p/2003423#M23720</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2022-11-11T08:57:17Z</dc:date>
    </item>
    <item>
      <title>Re: Sorting</title>
      <link>https://community.qlik.com/t5/Management-Governance/Sorting/m-p/2003432#M23722</link>
      <description>&lt;P&gt;i have set this column as the first sorting option. It works better now but for some reason 10 is on top, everything else is set to the right sorting order&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="qliker3_0-1668157820913.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/93493iC8F2A17FEE99C609/image-size/medium?v=v2&amp;amp;px=400" role="button" title="qliker3_0-1668157820913.png" alt="qliker3_0-1668157820913.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Regards&lt;/P&gt;</description>
      <pubDate>Fri, 11 Nov 2022 09:10:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Management-Governance/Sorting/m-p/2003432#M23722</guid>
      <dc:creator>qliker3</dc:creator>
      <dc:date>2022-11-11T09:10:41Z</dc:date>
    </item>
    <item>
      <title>Re: Sorting</title>
      <link>https://community.qlik.com/t5/Management-Governance/Sorting/m-p/2003476#M23725</link>
      <description>&lt;P&gt;This looked like a normal numerical sorting and not like a customized one. Are you sure that you have set the sorting to the expression (and before also checked that the expression is logically and syntactically working because an invalid expression will be ignored)? If you have chosen to apply the sorting per load-order then this option needs to enabled.&lt;/P&gt;
&lt;P&gt;- Marcus&lt;/P&gt;</description>
      <pubDate>Fri, 11 Nov 2022 10:41:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Management-Governance/Sorting/m-p/2003476#M23725</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2022-11-11T10:41:04Z</dc:date>
    </item>
  </channel>
</rss>

