<?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: Using Inline table to make top N selection + all values in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Using-Inline-table-to-make-top-N-selection-all-values/m-p/2003332#M83074</link>
    <description>&lt;P&gt;Add Another Selection Value&lt;/P&gt;
&lt;P&gt;_TopN:&lt;/P&gt;
&lt;P&gt;load * Inline [&lt;/P&gt;
&lt;P&gt;_rank_ID,_rankValue&lt;/P&gt;
&lt;P&gt;1,3&lt;/P&gt;
&lt;P&gt;2,5&lt;/P&gt;
&lt;P&gt;3,10&lt;/P&gt;
&lt;P&gt;4,ALL&lt;/P&gt;
&lt;P&gt;];&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then instead of using Field Limitations use a Measure as below&lt;/P&gt;
&lt;P&gt;=if(&lt;SPAN&gt;_rank_ID=4,sum(somemeasure) , if(rank(sum(somemeasure),4,2)&amp;lt;=&amp;nbsp;_rankValue ,&amp;nbsp;&amp;nbsp;sum(somemeasure)))&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 11 Nov 2022 04:26:37 GMT</pubDate>
    <dc:creator>vinieme12</dc:creator>
    <dc:date>2022-11-11T04:26:37Z</dc:date>
    <item>
      <title>Using Inline table to make top N selection + all values</title>
      <link>https://community.qlik.com/t5/App-Development/Using-Inline-table-to-make-top-N-selection-all-values/m-p/2003155#M83062</link>
      <description>&lt;P&gt;Hello there!&lt;/P&gt;
&lt;P&gt;I will try to explain this issue to the best of my abilities. I have an inline table, which is connected to a button list, from where&amp;nbsp; a user can pick a selection from 3,5,10 to show the top 10 values in a table.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Stanislav1_0-1668092692200.png" style="width: 187px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/93431i3CE2AB3C1252EB6D/image-dimensions/187x146?v=v2" width="187" height="146" role="button" title="Stanislav1_0-1668092692200.png" alt="Stanislav1_0-1668092692200.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Inline table&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Stanislav1_1-1668093015415.png" style="width: 668px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/93435i97D533E3DF8CBD5B/image-dimensions/668x299?v=v2" width="668" height="299" role="button" title="Stanislav1_1-1668093015415.png" alt="Stanislav1_1-1668093015415.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Front end table&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How can I make a selection, where the user can see all of the values from the selected measure? Thank you in advance&lt;/P&gt;</description>
      <pubDate>Fri, 15 Nov 2024 22:22:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Using-Inline-table-to-make-top-N-selection-all-values/m-p/2003155#M83062</guid>
      <dc:creator>Stanislav1</dc:creator>
      <dc:date>2024-11-15T22:22:24Z</dc:date>
    </item>
    <item>
      <title>Re: Using Inline table to make top N selection + all values</title>
      <link>https://community.qlik.com/t5/App-Development/Using-Inline-table-to-make-top-N-selection-all-values/m-p/2003206#M83064</link>
      <description>&lt;P&gt;You can put an if and else condition, such as below in the limitation section and restrict the value based on the value section. Or in a better way create an variable and use variable input box for the same.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;if(Value =3, 3, &lt;BR /&gt;if(Value=5, 5,&lt;BR /&gt;if(Value=10, 10)))&lt;/P&gt;</description>
      <pubDate>Thu, 10 Nov 2022 16:32:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Using-Inline-table-to-make-top-N-selection-all-values/m-p/2003206#M83064</guid>
      <dc:creator>deepanshuSh</dc:creator>
      <dc:date>2022-11-10T16:32:48Z</dc:date>
    </item>
    <item>
      <title>Re: Using Inline table to make top N selection + all values</title>
      <link>https://community.qlik.com/t5/App-Development/Using-Inline-table-to-make-top-N-selection-all-values/m-p/2003332#M83074</link>
      <description>&lt;P&gt;Add Another Selection Value&lt;/P&gt;
&lt;P&gt;_TopN:&lt;/P&gt;
&lt;P&gt;load * Inline [&lt;/P&gt;
&lt;P&gt;_rank_ID,_rankValue&lt;/P&gt;
&lt;P&gt;1,3&lt;/P&gt;
&lt;P&gt;2,5&lt;/P&gt;
&lt;P&gt;3,10&lt;/P&gt;
&lt;P&gt;4,ALL&lt;/P&gt;
&lt;P&gt;];&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then instead of using Field Limitations use a Measure as below&lt;/P&gt;
&lt;P&gt;=if(&lt;SPAN&gt;_rank_ID=4,sum(somemeasure) , if(rank(sum(somemeasure),4,2)&amp;lt;=&amp;nbsp;_rankValue ,&amp;nbsp;&amp;nbsp;sum(somemeasure)))&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 11 Nov 2022 04:26:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Using-Inline-table-to-make-top-N-selection-all-values/m-p/2003332#M83074</guid>
      <dc:creator>vinieme12</dc:creator>
      <dc:date>2022-11-11T04:26:37Z</dc:date>
    </item>
    <item>
      <title>Re: Using Inline table to make top N selection + all values</title>
      <link>https://community.qlik.com/t5/App-Development/Using-Inline-table-to-make-top-N-selection-all-values/m-p/2003386#M83084</link>
      <description>&lt;P&gt;Thank you it worked for me.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 11 Nov 2022 07:36:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Using-Inline-table-to-make-top-N-selection-all-values/m-p/2003386#M83084</guid>
      <dc:creator>Stanislav1</dc:creator>
      <dc:date>2022-11-11T07:36:59Z</dc:date>
    </item>
  </channel>
</rss>

