<?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: Sort the numbers in ascending order in a variable in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Sort-the-numbers-in-ascending-order-in-a-variable/m-p/2154842#M93553</link>
    <description>&lt;P&gt;Hi Anil Babu,&lt;/P&gt;
&lt;P&gt;I used your concept and used the subfield function to split the values. It worked for me to order more than 1 digit numbers. Thanks a lot.&lt;/P&gt;</description>
    <pubDate>Tue, 19 Dec 2023 23:00:29 GMT</pubDate>
    <dc:creator>Jeevayswaran</dc:creator>
    <dc:date>2023-12-19T23:00:29Z</dc:date>
    <item>
      <title>Sort the numbers in ascending order in a variable</title>
      <link>https://community.qlik.com/t5/App-Development/Sort-the-numbers-in-ascending-order-in-a-variable/m-p/2154244#M93514</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have a variable with list of values concatenated.&lt;/P&gt;
&lt;P&gt;vNum= 5,7,8,9,2,3,1&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I need to sort them and store in an another variable. How to do?&lt;/P&gt;
&lt;P&gt;Expected result: 1,2,3,5,7,8,9&lt;/P&gt;</description>
      <pubDate>Fri, 15 Nov 2024 21:10:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Sort-the-numbers-in-ascending-order-in-a-variable/m-p/2154244#M93514</guid>
      <dc:creator>Jeevayswaran</dc:creator>
      <dc:date>2024-11-15T21:10:10Z</dc:date>
    </item>
    <item>
      <title>Re: Sort the numbers in ascending order in a variable</title>
      <link>https://community.qlik.com/t5/App-Development/Sort-the-numbers-in-ascending-order-in-a-variable/m-p/2154264#M93515</link>
      <description>&lt;P&gt;presummably, you are concatenating the values of some field (this is Qlik after all), you can specify the sort order in the concat function:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://help.qlik.com/en-US/qlikview/May2023/Subsystems/Client/Content/QV_QlikView/ChartFunctions/StringAggregationFunctions/concat.htm#:~:text=Concat()%20is%20used%20to,expression%20evaluated%20over%20each%20dimension.&amp;amp;text=Arguments%3A,the%20string%20to%20be%20processed" target="_blank"&gt;https://help.qlik.com/en-US/qlikview/May2023/Subsystems/Client/Content/QV_QlikView/ChartFunctions/StringAggregationFunctions/concat.htm#:~:text=Concat()%20is%20used%20to,expression%20evaluated%20over%20each%20dimension.&amp;amp;text=Arguments%3A,the%20string%20to%20be%20processed&lt;/A&gt;.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="edwin_0-1702921294334.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/125687i3FCDDD78956F277F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="edwin_0-1702921294334.png" alt="edwin_0-1702921294334.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Dec 2023 17:41:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Sort-the-numbers-in-ascending-order-in-a-variable/m-p/2154264#M93515</guid>
      <dc:creator>edwin</dc:creator>
      <dc:date>2023-12-18T17:41:42Z</dc:date>
    </item>
    <item>
      <title>Re: Sort the numbers in ascending order in a variable</title>
      <link>https://community.qlik.com/t5/App-Development/Sort-the-numbers-in-ascending-order-in-a-variable/m-p/2154277#M93518</link>
      <description>&lt;P&gt;Perhaps this&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;=concat( mid(vNum, ValueLoop(1, len(vNum)),1),'',mid(vNum, ValueLoop(1, len(vNum)),1))&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Dec 2023 19:08:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Sort-the-numbers-in-ascending-order-in-a-variable/m-p/2154277#M93518</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2023-12-18T19:08:41Z</dc:date>
    </item>
    <item>
      <title>Re: Sort the numbers in ascending order in a variable</title>
      <link>https://community.qlik.com/t5/App-Development/Sort-the-numbers-in-ascending-order-in-a-variable/m-p/2154646#M93539</link>
      <description>&lt;P&gt;How this will work if i have 2 digit numbers? please share me the expression.&lt;/P&gt;</description>
      <pubDate>Tue, 19 Dec 2023 13:55:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Sort-the-numbers-in-ascending-order-in-a-variable/m-p/2154646#M93539</guid>
      <dc:creator>Jeevayswaran</dc:creator>
      <dc:date>2023-12-19T13:55:54Z</dc:date>
    </item>
    <item>
      <title>Re: Sort the numbers in ascending order in a variable</title>
      <link>https://community.qlik.com/t5/App-Development/Sort-the-numbers-in-ascending-order-in-a-variable/m-p/2154842#M93553</link>
      <description>&lt;P&gt;Hi Anil Babu,&lt;/P&gt;
&lt;P&gt;I used your concept and used the subfield function to split the values. It worked for me to order more than 1 digit numbers. Thanks a lot.&lt;/P&gt;</description>
      <pubDate>Tue, 19 Dec 2023 23:00:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Sort-the-numbers-in-ascending-order-in-a-variable/m-p/2154842#M93553</guid>
      <dc:creator>Jeevayswaran</dc:creator>
      <dc:date>2023-12-19T23:00:29Z</dc:date>
    </item>
    <item>
      <title>Re: Sort the numbers in ascending order in a variable</title>
      <link>https://community.qlik.com/t5/App-Development/Sort-the-numbers-in-ascending-order-in-a-variable/m-p/2154843#M93554</link>
      <description>&lt;P&gt;Hi Edwin,&lt;/P&gt;
&lt;P&gt;Thanks for your reply. When I used the sort weight option, The concatenate result has duplicate values .(Sometime the same bucket appears 2 times)&lt;/P&gt;</description>
      <pubDate>Tue, 19 Dec 2023 23:03:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Sort-the-numbers-in-ascending-order-in-a-variable/m-p/2154843#M93554</guid>
      <dc:creator>Jeevayswaran</dc:creator>
      <dc:date>2023-12-19T23:03:26Z</dc:date>
    </item>
  </channel>
</rss>

