<?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 Usage of Slider Object in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Usage-of-Slider-Object/m-p/1853872#M70495</link>
    <description>&lt;P&gt;Hi all,&lt;/P&gt;
&lt;P&gt;I am having following fields Brand, Product, Max_pH and Min_pH. Each Brand having Min and Max pH values. Some brands having no pH values.&lt;/P&gt;
&lt;P&gt;User wants a range slider object with pH value,&amp;nbsp; when he moves a slider he want to see no of Brands and No of Products with in this pH range.&lt;/P&gt;
&lt;P&gt;case1: when no selections in Slider object, need to show all Brands and product (with&amp;nbsp; pH&amp;nbsp; and without pH)&lt;/P&gt;
&lt;P&gt;case2: when we select range in Slider object, need to show brands and products with in that pH range.&lt;/P&gt;
&lt;P&gt;I take expression like this&lt;/P&gt;
&lt;P&gt;if($(vsliderMin)=Min(Min_pH) and $(vsliderMax)=Max(Max_pH),&lt;/P&gt;
&lt;P&gt;count(distinct Brand),&lt;/P&gt;
&lt;P&gt;count({&amp;lt; Min_pH = {"&amp;gt;=$(vsliderMin"},Min_pH={" &amp;lt;=$(vsliderMax)"}&amp;gt;}distinct Brand))&lt;/P&gt;
&lt;P&gt;The issue is when i select a brand from a brand filter with no pH values, not getting count of Brand and Product.&lt;/P&gt;
&lt;P&gt;how to write that expression.&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Pic1.jpg" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/65642i9CBB608387B05FDD/image-size/large?v=v2&amp;amp;px=999" role="button" title="Pic1.jpg" alt="Pic1.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 30 Nov 2021 16:25:32 GMT</pubDate>
    <dc:creator>kmmqlick</dc:creator>
    <dc:date>2021-11-30T16:25:32Z</dc:date>
    <item>
      <title>Usage of Slider Object</title>
      <link>https://community.qlik.com/t5/App-Development/Usage-of-Slider-Object/m-p/1853872#M70495</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;
&lt;P&gt;I am having following fields Brand, Product, Max_pH and Min_pH. Each Brand having Min and Max pH values. Some brands having no pH values.&lt;/P&gt;
&lt;P&gt;User wants a range slider object with pH value,&amp;nbsp; when he moves a slider he want to see no of Brands and No of Products with in this pH range.&lt;/P&gt;
&lt;P&gt;case1: when no selections in Slider object, need to show all Brands and product (with&amp;nbsp; pH&amp;nbsp; and without pH)&lt;/P&gt;
&lt;P&gt;case2: when we select range in Slider object, need to show brands and products with in that pH range.&lt;/P&gt;
&lt;P&gt;I take expression like this&lt;/P&gt;
&lt;P&gt;if($(vsliderMin)=Min(Min_pH) and $(vsliderMax)=Max(Max_pH),&lt;/P&gt;
&lt;P&gt;count(distinct Brand),&lt;/P&gt;
&lt;P&gt;count({&amp;lt; Min_pH = {"&amp;gt;=$(vsliderMin"},Min_pH={" &amp;lt;=$(vsliderMax)"}&amp;gt;}distinct Brand))&lt;/P&gt;
&lt;P&gt;The issue is when i select a brand from a brand filter with no pH values, not getting count of Brand and Product.&lt;/P&gt;
&lt;P&gt;how to write that expression.&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Pic1.jpg" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/65642i9CBB608387B05FDD/image-size/large?v=v2&amp;amp;px=999" role="button" title="Pic1.jpg" alt="Pic1.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Nov 2021 16:25:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Usage-of-Slider-Object/m-p/1853872#M70495</guid>
      <dc:creator>kmmqlick</dc:creator>
      <dc:date>2021-11-30T16:25:32Z</dc:date>
    </item>
    <item>
      <title>Re: Usage of Slider Object</title>
      <link>https://community.qlik.com/t5/App-Development/Usage-of-Slider-Object/m-p/1853900#M70500</link>
      <description>&lt;P&gt;Hi, so the products with no Ph should be shown always? to do this you can add a new field to flag products with no pH, like: If(IsNull(pHField),0,1) as hasPh&lt;/P&gt;
&lt;P&gt;And use this field in an expression like:&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;count({&amp;lt; Min_pH = {"&amp;gt;=$(vsliderMin"},Min_pH={" &amp;lt;=$(vsliderMax)"}&amp;gt;+&amp;lt;hasPh={0}&amp;gt;}distinct Brand)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 31 Oct 2021 07:37:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Usage-of-Slider-Object/m-p/1853900#M70500</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2021-10-31T07:37:24Z</dc:date>
    </item>
  </channel>
</rss>

