<?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: Filtering Table data based on Range Slider in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Filtering-Table-data-based-on-Range-Slider/m-p/2415721#M95101</link>
    <description>&lt;P&gt;Try this..&lt;/P&gt;
&lt;P&gt;Create two variables&lt;/P&gt;
&lt;P&gt;vMinProduct = Min(ProductID)&lt;/P&gt;
&lt;P&gt;vMaxProduct = Max(ProductID)&lt;/P&gt;
&lt;P&gt;Expression:&amp;nbsp;=SUM({&amp;lt;ProductID={"&amp;gt;=$(vMinProduct)&amp;lt;=$(vMaxProduct)"}&amp;gt;}Sales)&lt;/P&gt;</description>
    <pubDate>Wed, 07 Feb 2024 05:15:42 GMT</pubDate>
    <dc:creator>Nagaraju_KCS</dc:creator>
    <dc:date>2024-02-07T05:15:42Z</dc:date>
    <item>
      <title>Filtering Table data based on Range Slider</title>
      <link>https://community.qlik.com/t5/App-Development/Filtering-Table-data-based-on-Range-Slider/m-p/2415688#M95099</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;I am new to Qliksense platform and have just began creating an app.&lt;/P&gt;
&lt;P&gt;I have a table with Columns like: City, Year, Month, ProductID, StoreID,Price, Quantiy, where productID is a number like 0,1,2,...6000.&lt;/P&gt;
&lt;P&gt;I have to create a slider(s) to select Minimum ProductID and Maximum ProductID based on which the rows in the table visual should get filtered.&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Currently, using single or multiple slicer to select minimum and maximum value would work for my use case.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I tried exploring the forums as well as using variable input visualization for the purpose but couldn't create a reliable solution.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I would appreciate any help with the case.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Wed, 07 Feb 2024 02:53:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Filtering-Table-data-based-on-Range-Slider/m-p/2415688#M95099</guid>
      <dc:creator>Neha7</dc:creator>
      <dc:date>2024-02-07T02:53:11Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering Table data based on Range Slider</title>
      <link>https://community.qlik.com/t5/App-Development/Filtering-Table-data-based-on-Range-Slider/m-p/2415721#M95101</link>
      <description>&lt;P&gt;Try this..&lt;/P&gt;
&lt;P&gt;Create two variables&lt;/P&gt;
&lt;P&gt;vMinProduct = Min(ProductID)&lt;/P&gt;
&lt;P&gt;vMaxProduct = Max(ProductID)&lt;/P&gt;
&lt;P&gt;Expression:&amp;nbsp;=SUM({&amp;lt;ProductID={"&amp;gt;=$(vMinProduct)&amp;lt;=$(vMaxProduct)"}&amp;gt;}Sales)&lt;/P&gt;</description>
      <pubDate>Wed, 07 Feb 2024 05:15:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Filtering-Table-data-based-on-Range-Slider/m-p/2415721#M95101</guid>
      <dc:creator>Nagaraju_KCS</dc:creator>
      <dc:date>2024-02-07T05:15:42Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering Table data based on Range Slider</title>
      <link>https://community.qlik.com/t5/App-Development/Filtering-Table-data-based-on-Range-Slider/m-p/2415781#M95112</link>
      <description>&lt;P&gt;Final result using 2 variables and a simple expression for the dimension:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="LRuCelver_0-1707289613276.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/159244i954E16325C6B8955/image-size/medium?v=v2&amp;amp;px=400" role="button" title="LRuCelver_0-1707289613276.png" alt="LRuCelver_0-1707289613276.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've created 2 variables: &lt;STRONG&gt;vMinProductID&lt;/STRONG&gt; and &lt;STRONG&gt;vMaxProductID&lt;/STRONG&gt;.&lt;/P&gt;
&lt;P&gt;The sliders for the variables are set up from 0 to 6000. You can adjust the values dynamically if you want to. The input boxed are used for a more precise input.&lt;/P&gt;
&lt;P&gt;For the dimension I've used this expression:&lt;/P&gt;
&lt;PRE&gt;=Aggr(If(ProductID &amp;gt;= vMinProductID and ProductID &amp;lt;= vMaxProductID, ProductID), ProductID)&lt;/PRE&gt;
&lt;P&gt;Make sure to disable the checkbox "&lt;STRONG&gt;Include null values&lt;/STRONG&gt;".&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="LRuCelver_3-1707289898652.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/159247i28E0FA44A22CC273/image-size/medium?v=v2&amp;amp;px=400" role="button" title="LRuCelver_3-1707289898652.png" alt="LRuCelver_3-1707289898652.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Filtering the dimension in the table will filter the ProductID field.&lt;/P&gt;</description>
      <pubDate>Wed, 07 Feb 2024 07:12:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Filtering-Table-data-based-on-Range-Slider/m-p/2415781#M95112</guid>
      <dc:creator>LRuCelver</dc:creator>
      <dc:date>2024-02-07T07:12:28Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering Table data based on Range Slider</title>
      <link>https://community.qlik.com/t5/App-Development/Filtering-Table-data-based-on-Range-Slider/m-p/2416282#M95158</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;Thank you for your suggestion.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I tried implementing similar expression but it can't handle the case when no value is provided as input in the minimum or maximum limit box/slider.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I did set the values as 0, 10000 while defining the variables but it doesn't helps.&lt;/P&gt;
&lt;P&gt;Expression:&amp;nbsp;&lt;/P&gt;
&lt;DIV&gt;=aggr(&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; if(&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ATA&amp;gt;= if(LEN($(vProdIdMinLimit))&amp;lt;1,0,$(vProdIdMinLimit))&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; and&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ATA&amp;lt;= if(LEN($(vProdIdMaxLimit))&amp;lt;1,6650,$(vProdIdMaxLimit))&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ,&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; ProductID)&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;,&lt;SPAN&gt;ProductID&lt;/SPAN&gt;)&lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I also tested using Isnull function.&lt;/P&gt;</description>
      <pubDate>Wed, 07 Feb 2024 22:12:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Filtering-Table-data-based-on-Range-Slider/m-p/2416282#M95158</guid>
      <dc:creator>Neha7</dc:creator>
      <dc:date>2024-02-07T22:12:54Z</dc:date>
    </item>
    <item>
      <title>Re: Filtering Table data based on Range Slider</title>
      <link>https://community.qlik.com/t5/App-Development/Filtering-Table-data-based-on-Range-Slider/m-p/2416283#M95159</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;Thank you for your advise.&lt;/P&gt;
&lt;P&gt;I tried implementing similar expression but it couldn't handle the case when no value is provided as input in the minimum or maximum limit box/slider.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I did set the values as 0, 10000 while defining the variables but it doesn't helps.&lt;/P&gt;
&lt;P&gt;Expression:&amp;nbsp;&lt;/P&gt;
&lt;DIV&gt;=aggr(&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;if(&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ATA&amp;gt;= if(LEN($(vProdIdMinLimit))&amp;lt;1,0,$(vProdIdMinLimit))&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; and&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ATA&amp;lt;= if(LEN($(vProdIdMaxLimit))&amp;lt;1,6650,$(vProdIdMaxLimit))&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ,&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;ProductID)&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;,&lt;SPAN&gt;ProductID&lt;/SPAN&gt;)&lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would appreciate any further suggestions.&lt;/P&gt;</description>
      <pubDate>Wed, 07 Feb 2024 22:15:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Filtering-Table-data-based-on-Range-Slider/m-p/2416283#M95159</guid>
      <dc:creator>Neha7</dc:creator>
      <dc:date>2024-02-07T22:15:22Z</dc:date>
    </item>
  </channel>
</rss>

