<?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 a Field using the ID of another Field in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Sorting-a-Field-using-the-ID-of-another-Field/m-p/2497514#M102757</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/246443"&gt;@bmac1&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;you could just Map the #Product_ID onto your Product_2 as a "Sorting_ID".&lt;/P&gt;
&lt;P&gt;Then use this Sorting_ID in your sort expression.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 11 Dec 2024 19:57:32 GMT</pubDate>
    <dc:creator>NoahF</dc:creator>
    <dc:date>2024-12-11T19:57:32Z</dc:date>
    <item>
      <title>Sorting a Field using the ID of another Field</title>
      <link>https://community.qlik.com/t5/App-Development/Sorting-a-Field-using-the-ID-of-another-Field/m-p/2497478#M102748</link>
      <description>&lt;P&gt;Let's say I have two similar fields: Product and Product_2.&lt;/P&gt;
&lt;TABLE width="243"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="119"&gt;PRODUCT&lt;/TD&gt;
&lt;TD width="124"&gt;PRODUCT_2&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;B&lt;/TD&gt;
&lt;TD&gt;B&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;D&lt;/TD&gt;
&lt;TD&gt;D&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;A&lt;/TD&gt;
&lt;TD&gt;A&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;F&lt;/TD&gt;
&lt;TD&gt;F&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;C&lt;/TD&gt;
&lt;TD&gt;C&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;G&lt;/TD&gt;
&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;H&lt;/TD&gt;
&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Product has an associated #Product_ID used as the sort order [ex: A=1, B=2, C=3...]&lt;/P&gt;
&lt;P&gt;Is there a way using sort order expression to sort Product_2 by #Product_ID, even though there is no backend relationship? Assume any value in Product_2 will be available in Product.&lt;/P&gt;</description>
      <pubDate>Wed, 11 Dec 2024 16:13:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Sorting-a-Field-using-the-ID-of-another-Field/m-p/2497478#M102748</guid>
      <dc:creator>bmac1</dc:creator>
      <dc:date>2024-12-11T16:13:41Z</dc:date>
    </item>
    <item>
      <title>Re: Sorting a Field using the ID of another Field</title>
      <link>https://community.qlik.com/t5/App-Development/Sorting-a-Field-using-the-ID-of-another-Field/m-p/2497486#M102750</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/246443"&gt;@bmac1&lt;/a&gt;&amp;nbsp; try using dual(). Try using below expression in expression sort&lt;/P&gt;
&lt;P&gt;= dual(Product2,ProductID)&lt;/P&gt;</description>
      <pubDate>Wed, 11 Dec 2024 16:57:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Sorting-a-Field-using-the-ID-of-another-Field/m-p/2497486#M102750</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2024-12-11T16:57:30Z</dc:date>
    </item>
    <item>
      <title>Re: Sorting a Field using the ID of another Field</title>
      <link>https://community.qlik.com/t5/App-Development/Sorting-a-Field-using-the-ID-of-another-Field/m-p/2497494#M102751</link>
      <description>&lt;P&gt;Returns null&lt;/P&gt;</description>
      <pubDate>Wed, 11 Dec 2024 17:57:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Sorting-a-Field-using-the-ID-of-another-Field/m-p/2497494#M102751</guid>
      <dc:creator>bmac1</dc:creator>
      <dc:date>2024-12-11T17:57:00Z</dc:date>
    </item>
    <item>
      <title>Re: Sorting a Field using the ID of another Field</title>
      <link>https://community.qlik.com/t5/App-Development/Sorting-a-Field-using-the-ID-of-another-Field/m-p/2497514#M102757</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/246443"&gt;@bmac1&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;you could just Map the #Product_ID onto your Product_2 as a "Sorting_ID".&lt;/P&gt;
&lt;P&gt;Then use this Sorting_ID in your sort expression.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Dec 2024 19:57:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Sorting-a-Field-using-the-ID-of-another-Field/m-p/2497514#M102757</guid>
      <dc:creator>NoahF</dc:creator>
      <dc:date>2024-12-11T19:57:32Z</dc:date>
    </item>
  </channel>
</rss>

