<?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: Inline Load Sorting in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Inline-Load-Sorting/m-p/1610132#M45319</link>
    <description>go to sorting options and uncheck A-&amp;gt; Z and check Load order.</description>
    <pubDate>Wed, 07 Aug 2019 07:56:33 GMT</pubDate>
    <dc:creator>dhasharadh</dc:creator>
    <dc:date>2019-08-07T07:56:33Z</dc:date>
    <item>
      <title>Inline Load Sorting</title>
      <link>https://community.qlik.com/t5/App-Development/Inline-Load-Sorting/m-p/1610123#M45313</link>
      <description>&lt;P&gt;&lt;FONT size="2"&gt;Hello All,&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;I have the following inline table:&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;Dim1:&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;Load * Inline&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;[&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;_Dim1No,Dim1&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;1,DateOfBusiness&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;2,Month&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;3,Week&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;4,City&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;];&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;I want the same order as above in my dimension (always selected one) on selection bar.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Dim.PNG" style="width: 195px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/16657i533C6BFAC3A821A3/image-size/small?v=v2&amp;amp;px=200" role="button" title="Dim.PNG" alt="Dim.PNG" /&gt;&lt;/span&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;As above image i am not getting it order. Can anyone suggest any way to sort the inline load?&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;Thanks&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 20:18:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Inline-Load-Sorting/m-p/1610123#M45313</guid>
      <dc:creator>Karahs</dc:creator>
      <dc:date>2024-11-16T20:18:44Z</dc:date>
    </item>
    <item>
      <title>Re: Inline Load Sorting</title>
      <link>https://community.qlik.com/t5/App-Development/Inline-Load-Sorting/m-p/1610129#M45316</link>
      <description>&lt;P&gt;Try loading using dual(), like:&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;Dim1:&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;Load&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;_Dim1No,&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;FONT size="2"&gt;Dual(Dim1,&amp;nbsp;_Dim1No)&amp;nbsp; AS Dim1&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;Inline&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;[&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;_Dim1No,Dim1&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;1,DateOfBusiness&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;2,Month&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;3,Week&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;4,City&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;];&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Aug 2019 07:51:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Inline-Load-Sorting/m-p/1610129#M45316</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2019-08-07T07:51:08Z</dc:date>
    </item>
    <item>
      <title>Re: Inline Load Sorting</title>
      <link>https://community.qlik.com/t5/App-Development/Inline-Load-Sorting/m-p/1610131#M45318</link>
      <description>&lt;P&gt;You can't get the same order in the selection bar. A filter pane has a Sorting section in its properties pane, but the selection bar cannot be changed. You could create a new field using the Dual function:&lt;/P&gt;&lt;P&gt;Dim1:&lt;BR /&gt;Load *, &lt;STRONG&gt;dual(Dim1,_Dim1No)as Dim2&lt;/STRONG&gt; Inline&lt;BR /&gt;[&lt;BR /&gt;_Dim1No,Dim1&lt;BR /&gt;1,DateOfBusiness&lt;BR /&gt;2,Month&lt;BR /&gt;3,Week&lt;BR /&gt;4,City&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;Dim2 will be a&amp;nbsp; numeric field with textual 'formats' for each number. Try it and see if it works for you.&lt;/P&gt;</description>
      <pubDate>Wed, 07 Aug 2019 07:57:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Inline-Load-Sorting/m-p/1610131#M45318</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2019-08-07T07:57:18Z</dc:date>
    </item>
    <item>
      <title>Re: Inline Load Sorting</title>
      <link>https://community.qlik.com/t5/App-Development/Inline-Load-Sorting/m-p/1610132#M45319</link>
      <description>go to sorting options and uncheck A-&amp;gt; Z and check Load order.</description>
      <pubDate>Wed, 07 Aug 2019 07:56:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Inline-Load-Sorting/m-p/1610132#M45319</guid>
      <dc:creator>dhasharadh</dc:creator>
      <dc:date>2019-08-07T07:56:33Z</dc:date>
    </item>
    <item>
      <title>Re: Inline Load Sorting</title>
      <link>https://community.qlik.com/t5/App-Development/Inline-Load-Sorting/m-p/1610135#M45320</link>
      <description>&lt;P&gt;Thanks Gysbert_Wassenaar&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Aug 2019 08:02:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Inline-Load-Sorting/m-p/1610135#M45320</guid>
      <dc:creator>Karahs</dc:creator>
      <dc:date>2019-08-07T08:02:27Z</dc:date>
    </item>
  </channel>
</rss>

