<?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: Range filter in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Range-filter/m-p/1653830#M48851</link>
    <description>&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;below is what i'm trying to do, creating normal filters and range filters for columns having alot of distinct values .&lt;/P&gt;&lt;P&gt;Requirement : using multiple filters lock the customers on certain criteria eg :&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial black,avant garde"&gt;customer having sales &amp;gt; 5000&amp;nbsp; &lt;/FONT&gt;&lt;FONT face="arial black,avant garde"&gt;and &lt;/FONT&gt;&lt;FONT face="arial black,avant garde"&gt;qnty &amp;lt; 50 and &lt;/FONT&gt;&lt;FONT face="arial black,avant garde"&gt;profit&amp;nbsp; between 200 and 1000 &lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial black,avant garde"&gt;then show count(Distinct customers) with other dimensions.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;after this sheet will be individual customer level sheet showing each customer who fulfilled above eg. criteria with some other kpis.&lt;/P&gt;&lt;P&gt;Issues :&lt;/P&gt;&lt;P&gt;1)filters should be applied per customer&lt;/P&gt;&lt;P&gt;2)totals should also change&lt;/P&gt;&lt;P&gt;3)dependencies between normal filter and range filters and with themselves too.&lt;/P&gt;&lt;P&gt;4) selection done in ranged filters don't get refreshed plus they don't show up in top selected tab too which makes it difficult to under which filter is applied which is not.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;logic used in columns :&lt;/P&gt;&lt;P&gt;created two variables min and max then applied below expression in table columns :&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;= if((sum(Tax) &amp;gt;= $(vMinTax) AND sum(Tax) &amp;lt;= $(vMaxTax)),&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;if(isnull(sum(Tax)),null(),sum(Tax))&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;,null()&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;)&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture_front1.PNG" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/24873iB4C0D5BD42D935D1/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture_front1.PNG" alt="Capture_front1.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 03 Dec 2019 21:28:47 GMT</pubDate>
    <dc:creator>Wayne_101</dc:creator>
    <dc:date>2019-12-03T21:28:47Z</dc:date>
    <item>
      <title>Range filter</title>
      <link>https://community.qlik.com/t5/App-Development/Range-filter/m-p/1649054#M48386</link>
      <description>&lt;P&gt;isn't&lt;SPAN&gt;&amp;nbsp;there any other way to just give simple range filters where user has option of&amp;nbsp;&amp;nbsp;&lt;STRONG&gt;&amp;nbsp;&amp;gt; and &amp;lt;&lt;/STRONG&gt;&amp;nbsp;operator or can have&amp;nbsp;&amp;nbsp;&lt;STRONG&gt;between clause, in simple words just a ranged filter.&lt;/STRONG&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;This functionality is so much easier in tableau and power hence in qlik sense i haven't came across one fully functional solution.&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;my solution :&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;made 2 Variable :&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;vMax =max(sales)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;vMin=max(sales)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;then use above variables in sales measure like this :&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;= if((sum(Sales) &amp;gt;= $(vMin) AND sum(Sales) &amp;lt;= $(vMax)),sum(TotalCalls))&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;which gives me following output in screenshot no 5&amp;nbsp; filtering the data but leaving blank in sales column where condition not met:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;please help&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 19:37:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Range-filter/m-p/1649054#M48386</guid>
      <dc:creator>Wayne_101</dc:creator>
      <dc:date>2024-11-16T19:37:57Z</dc:date>
    </item>
    <item>
      <title>Re: Range filter</title>
      <link>https://community.qlik.com/t5/App-Development/Range-filter/m-p/1649116#M48399</link>
      <description>&lt;P&gt;You can suppress those rows by going into the following properties: &lt;STRONG&gt;Add-ons -&amp;gt; Data handling -&amp;gt; Uncheck 'Include zero values'.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;For the total, you can just change your expression to&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Sum(Aggr(
  If((Sum(Sales) &amp;gt;= $(vMin) and Sum(Sales) &amp;lt;= $(vMax)), Sum(TotalCalls))
, YourDimensionsFromTheChart))&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Nov 2019 13:22:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Range-filter/m-p/1649116#M48399</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2019-11-20T13:22:37Z</dc:date>
    </item>
    <item>
      <title>Re: Range filter</title>
      <link>https://community.qlik.com/t5/App-Development/Range-filter/m-p/1652103#M48654</link>
      <description>&lt;P&gt;my dimension has millions of distinct values which is actually customer no , can you guide in this matter secondly how can i apply the selection made from my range filter to other sheets.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;note : i have made multiple range filters.&lt;/P&gt;</description>
      <pubDate>Thu, 28 Nov 2019 07:22:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Range-filter/m-p/1652103#M48654</guid>
      <dc:creator>Wayne_101</dc:creator>
      <dc:date>2019-11-28T07:22:24Z</dc:date>
    </item>
    <item>
      <title>Re: Range filter</title>
      <link>https://community.qlik.com/t5/App-Development/Range-filter/m-p/1652754#M48749</link>
      <description>&lt;P&gt;I am not sure I understand the issue? "&lt;SPAN&gt;my dimension has millions of distinct values which is actually customer no" What does that have to do with the solution provided.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;For the second condition... what exactly are you trying to do. Again, I am not really sure about the selections you are looking to have dashboard wide?&lt;/P&gt;</description>
      <pubDate>Fri, 29 Nov 2019 15:54:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Range-filter/m-p/1652754#M48749</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2019-11-29T15:54:23Z</dc:date>
    </item>
    <item>
      <title>Re: Range filter</title>
      <link>https://community.qlik.com/t5/App-Development/Range-filter/m-p/1653830#M48851</link>
      <description>&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;below is what i'm trying to do, creating normal filters and range filters for columns having alot of distinct values .&lt;/P&gt;&lt;P&gt;Requirement : using multiple filters lock the customers on certain criteria eg :&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial black,avant garde"&gt;customer having sales &amp;gt; 5000&amp;nbsp; &lt;/FONT&gt;&lt;FONT face="arial black,avant garde"&gt;and &lt;/FONT&gt;&lt;FONT face="arial black,avant garde"&gt;qnty &amp;lt; 50 and &lt;/FONT&gt;&lt;FONT face="arial black,avant garde"&gt;profit&amp;nbsp; between 200 and 1000 &lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial black,avant garde"&gt;then show count(Distinct customers) with other dimensions.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;after this sheet will be individual customer level sheet showing each customer who fulfilled above eg. criteria with some other kpis.&lt;/P&gt;&lt;P&gt;Issues :&lt;/P&gt;&lt;P&gt;1)filters should be applied per customer&lt;/P&gt;&lt;P&gt;2)totals should also change&lt;/P&gt;&lt;P&gt;3)dependencies between normal filter and range filters and with themselves too.&lt;/P&gt;&lt;P&gt;4) selection done in ranged filters don't get refreshed plus they don't show up in top selected tab too which makes it difficult to under which filter is applied which is not.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;logic used in columns :&lt;/P&gt;&lt;P&gt;created two variables min and max then applied below expression in table columns :&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;= if((sum(Tax) &amp;gt;= $(vMinTax) AND sum(Tax) &amp;lt;= $(vMaxTax)),&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;if(isnull(sum(Tax)),null(),sum(Tax))&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;,null()&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;)&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture_front1.PNG" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/24873iB4C0D5BD42D935D1/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture_front1.PNG" alt="Capture_front1.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Dec 2019 21:28:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Range-filter/m-p/1653830#M48851</guid>
      <dc:creator>Wayne_101</dc:creator>
      <dc:date>2019-12-03T21:28:47Z</dc:date>
    </item>
    <item>
      <title>Re: Range filter</title>
      <link>https://community.qlik.com/t5/App-Development/Range-filter/m-p/1880672#M72576</link>
      <description>&lt;P&gt;Hi, I have multiple sheets with different KPIs and tables, how can I make the range filter selection apply to all of them? Do I need to specify such an expression for every single chart and custom objects I have used?&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jan 2022 12:37:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Range-filter/m-p/1880672#M72576</guid>
      <dc:creator>user42_qlik</dc:creator>
      <dc:date>2022-01-13T12:37:52Z</dc:date>
    </item>
  </channel>
</rss>

