<?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: select possible values in filter in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/select-possible-values-in-filter/m-p/17343#M1173</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes, this what i needed, but my input should not be like *56*, i simply enter 56 even then i need to get &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;56-60 &amp;amp; 12-56. in my list,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;i tried with this expression, still no luck&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;=aggr(only({1&amp;lt;Part_Number= p(Part_Number)&amp;gt;}Part_Number),Part_Number)&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 13 Feb 2018 17:26:52 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2018-02-13T17:26:52Z</dc:date>
    <item>
      <title>select possible values in filter</title>
      <link>https://community.qlik.com/t5/App-Development/select-possible-values-in-filter/m-p/17339#M1169</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to make qliksense automatically select possible value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in filter there are below values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;12-56&lt;/P&gt;&lt;P&gt;23-67&lt;/P&gt;&lt;P&gt;45-88&lt;/P&gt;&lt;P&gt;67-44&lt;/P&gt;&lt;P&gt;56-60&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for general filter search if we give 56 as input we get only 56-60 in the list.&lt;/P&gt;&lt;P&gt;what needs to be done if we want to see 12-56 also in that list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so i need to give *56* to get both 56-60 &amp;amp; 12-56.&lt;/P&gt;&lt;P&gt;but my data is in thousand how to handle such case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please let me know of any clues&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Feb 2018 16:33:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/select-possible-values-in-filter/m-p/17339#M1169</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-02-13T16:33:31Z</dc:date>
    </item>
    <item>
      <title>Re: select possible values in filter</title>
      <link>https://community.qlik.com/t5/App-Development/select-possible-values-in-filter/m-p/17340#M1170</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Raghav,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have you tried bucketing?&amp;nbsp; This would allow you to have multiple overlapping buckets and a datapoint could belong to more than one of them.&lt;/P&gt;&lt;PRE __default_attr="sql" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_1518541099404267 jive_text_macro" jivemacro_uid="_1518541099404267" modifiedtitle="true"&gt;
&lt;P&gt;Orders:&lt;/P&gt;
&lt;P&gt;Load * Inline&lt;/P&gt;
&lt;P&gt;[&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; orderId, orderDurationMinutes&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1, 25&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2, 46&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 3, 78.9&lt;/P&gt;
&lt;P&gt;]&lt;/P&gt;
&lt;P&gt;;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;DurationBuckets:&lt;/P&gt;
&lt;P&gt;LOAD orderId , '12-56' AS 'DurationBucket' Resident Orders&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; WHERE orderDurationMinutes &amp;gt;=12 AND orderDurationMinutes &amp;lt;= 56&lt;/P&gt;
&lt;P&gt;;&lt;/P&gt;
&lt;P style="font-size: 13.3333px;"&gt;LOAD orderId , '23-67' AS 'DurationBucket' Resident Orders&lt;/P&gt;
&lt;P style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; WHERE orderDurationMinutes &amp;gt;=23AND orderDurationMinutes &amp;lt;= &lt;SPAN style="font-size: 13.3333px;"&gt;67&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="font-size: 13.3333px;"&gt;;&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Of course there are ways to be more clever and more robust with your buckets, but it's a start.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Feb 2018 16:58:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/select-possible-values-in-filter/m-p/17340#M1170</guid>
      <dc:creator>JustinDallas</dc:creator>
      <dc:date>2018-02-13T16:58:05Z</dc:date>
    </item>
    <item>
      <title>Re: select possible values in filter</title>
      <link>https://community.qlik.com/t5/App-Development/select-possible-values-in-filter/m-p/17341#M1171</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for your reply Justin. My requirement is only to show the possible values of the input.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Feb 2018 16:59:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/select-possible-values-in-filter/m-p/17341#M1171</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-02-13T16:59:55Z</dc:date>
    </item>
    <item>
      <title>Re: select possible values in filter</title>
      <link>https://community.qlik.com/t5/App-Development/select-possible-values-in-filter/m-p/17342#M1172</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Add a filter pane object and add the field with the interval values as dimension for the filter pane.&lt;/P&gt;&lt;P&gt;Click on the Magnifying Glass icon to open the search input field. Enter *56* in the input field and press enter.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="c291258.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/193281_c291258.png" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Feb 2018 17:23:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/select-possible-values-in-filter/m-p/17342#M1172</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2018-02-13T17:23:49Z</dc:date>
    </item>
    <item>
      <title>Re: select possible values in filter</title>
      <link>https://community.qlik.com/t5/App-Development/select-possible-values-in-filter/m-p/17343#M1173</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes, this what i needed, but my input should not be like *56*, i simply enter 56 even then i need to get &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;56-60 &amp;amp; 12-56. in my list,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;i tried with this expression, still no luck&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;=aggr(only({1&amp;lt;Part_Number= p(Part_Number)&amp;gt;}Part_Number),Part_Number)&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Feb 2018 17:26:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/select-possible-values-in-filter/m-p/17343#M1173</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-02-13T17:26:52Z</dc:date>
    </item>
  </channel>
</rss>

