<?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 Assign order number based on another dimension column value in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Assign-order-number-based-on-another-dimension-column-value/m-p/1848941#M70160</link>
    <description>&lt;P&gt;Hi all,&lt;/P&gt;
&lt;P&gt;Given a table as the one on the screenshot below: &lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Captura de Pantalla 2021-10-19 a les 16.31.33.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/64752i6D177A1D6B49C88D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Captura de Pantalla 2021-10-19 a les 16.31.33.png" alt="Captura de Pantalla 2021-10-19 a les 16.31.33.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;I would love to create a new column on the right side giving me the order of each row based on its ID and its antiquity as well. In other words, my desired output should look as follows:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Captura de Pantalla 2021-10-19 a les 16.34.42.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/64753i2D5CD0AE3BF2F158/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Captura de Pantalla 2021-10-19 a les 16.34.42.png" alt="Captura de Pantalla 2021-10-19 a les 16.34.42.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I know this is doable in Qlik View by combining aggr() and rowno() functions. Nevertheless I've tried to replicate this method in Qlik Sense but all my attempts had been unsuccessful so far. How should I do to get this outcome?&lt;/P&gt;
&lt;P&gt;Thanks a lot in advance.&lt;/P&gt;</description>
    <pubDate>Tue, 19 Oct 2021 14:39:19 GMT</pubDate>
    <dc:creator>theo_pf</dc:creator>
    <dc:date>2021-10-19T14:39:19Z</dc:date>
    <item>
      <title>Assign order number based on another dimension column value</title>
      <link>https://community.qlik.com/t5/App-Development/Assign-order-number-based-on-another-dimension-column-value/m-p/1848941#M70160</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;
&lt;P&gt;Given a table as the one on the screenshot below: &lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Captura de Pantalla 2021-10-19 a les 16.31.33.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/64752i6D177A1D6B49C88D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Captura de Pantalla 2021-10-19 a les 16.31.33.png" alt="Captura de Pantalla 2021-10-19 a les 16.31.33.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;I would love to create a new column on the right side giving me the order of each row based on its ID and its antiquity as well. In other words, my desired output should look as follows:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Captura de Pantalla 2021-10-19 a les 16.34.42.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/64753i2D5CD0AE3BF2F158/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Captura de Pantalla 2021-10-19 a les 16.34.42.png" alt="Captura de Pantalla 2021-10-19 a les 16.34.42.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I know this is doable in Qlik View by combining aggr() and rowno() functions. Nevertheless I've tried to replicate this method in Qlik Sense but all my attempts had been unsuccessful so far. How should I do to get this outcome?&lt;/P&gt;
&lt;P&gt;Thanks a lot in advance.&lt;/P&gt;</description>
      <pubDate>Tue, 19 Oct 2021 14:39:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Assign-order-number-based-on-another-dimension-column-value/m-p/1848941#M70160</guid>
      <dc:creator>theo_pf</dc:creator>
      <dc:date>2021-10-19T14:39:19Z</dc:date>
    </item>
    <item>
      <title>Re: Assign order number based on another dimension column value</title>
      <link>https://community.qlik.com/t5/App-Development/Assign-order-number-based-on-another-dimension-column-value/m-p/1848954#M70162</link>
      <description>&lt;P&gt;Try this,&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;tab1:
LOAD *, AutoNumber(RowNo(),ID) As ORDER INLINE [
    ID, DATE, STATUS
    1, 1/2/2020, Done
    1, 1/3/2020, Done
    1, 1/5/2020, Done
    1, 1/6/2020, Done
    1, 1/8/2020, Pending
    2, 1/4/2020, Done
    2, 1/5/2020, Done
    3, 1/3/2020, Done
    3, 1/4/2020, Done
    3, 1/7/2020, Pending
];&lt;/LI-CODE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="commQV15.PNG" style="width: 161px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/64757i35D6F93ED5CD7E4D/image-size/large?v=v2&amp;amp;px=999" role="button" title="commQV15.PNG" alt="commQV15.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Oct 2021 14:51:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Assign-order-number-based-on-another-dimension-column-value/m-p/1848954#M70162</guid>
      <dc:creator>Saravanan_Desingh</dc:creator>
      <dc:date>2021-10-19T14:51:00Z</dc:date>
    </item>
    <item>
      <title>Re: Assign order number based on another dimension column value</title>
      <link>https://community.qlik.com/t5/App-Development/Assign-order-number-based-on-another-dimension-column-value/m-p/1848965#M70166</link>
      <description>&lt;P&gt;Sorry, I missed to specify I should use chart functions.&lt;/P&gt;</description>
      <pubDate>Tue, 19 Oct 2021 15:00:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Assign-order-number-based-on-another-dimension-column-value/m-p/1848965#M70166</guid>
      <dc:creator>theo_pf</dc:creator>
      <dc:date>2021-10-19T15:00:31Z</dc:date>
    </item>
  </channel>
</rss>

