<?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: User interactive bucket size / variables in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/User-interactive-bucket-size-variables/m-p/1723319#M55042</link>
    <description>&lt;P&gt;Yes, I would like to make it flexible to allow users to allow make changes on-demand.&amp;nbsp; &amp;nbsp;Any advice is appreciated&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 30 Jun 2020 01:22:36 GMT</pubDate>
    <dc:creator>yipchunyu</dc:creator>
    <dc:date>2020-06-30T01:22:36Z</dc:date>
    <item>
      <title>User interactive bucket size / variables</title>
      <link>https://community.qlik.com/t5/App-Development/User-interactive-bucket-size-variables/m-p/1723032#M55023</link>
      <description>&lt;P&gt;I think it's very common question but I can't find a concrete answer yet.&lt;/P&gt;&lt;P&gt;The question is very simple.&amp;nbsp; I want to make my charts with dynamic bucket.&lt;/P&gt;&lt;P&gt;For example,&amp;nbsp;&lt;/P&gt;&lt;P&gt;existing age group are pre-defined with&lt;/P&gt;&lt;P&gt;1. 0-18&lt;/P&gt;&lt;P&gt;2 19 -28&lt;/P&gt;&lt;P&gt;3. 29-50&lt;/P&gt;&lt;P&gt;4. &amp;gt; 50&lt;/P&gt;&lt;P&gt;How can I make a UI which the users can change it dynamic on screen (I cater this via the loading scripts now).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Similar requirement for sales amount as well which I may need to define multiple groups&lt;/P&gt;&lt;P&gt;Scenario 1 (three classes):&lt;/P&gt;&lt;P&gt;Sales &amp;lt;= 100000&lt;/P&gt;&lt;P&gt;Sales &amp;gt; 100000 and &amp;lt;= 500000&lt;/P&gt;&lt;P&gt;Sales &amp;gt; 500000&lt;/P&gt;&lt;P&gt;Scenario 2 (two classes):&lt;/P&gt;&lt;P&gt;Sales &amp;lt;= 500000&lt;/P&gt;&lt;P&gt;Sales &amp;gt; 500000&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jun 2020 08:32:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/User-interactive-bucket-size-variables/m-p/1723032#M55023</guid>
      <dc:creator>yipchunyu</dc:creator>
      <dc:date>2020-06-29T08:32:42Z</dc:date>
    </item>
    <item>
      <title>Re: User interactive bucket size / variables</title>
      <link>https://community.qlik.com/t5/App-Development/User-interactive-bucket-size-variables/m-p/1723096#M55025</link>
      <description>&lt;P&gt;If the user interaction is limited to choosing between different scenarios (like in your Sales example), then you can create each scenario using a field in your load script, creating alternative dimensions in your chart and let the user select one of the alternative dimensions in the UI.&lt;/P&gt;&lt;P&gt;Or should the user be able to change the number of buckets as well as the bucket sizes (with different sizes to make it most complicated)?&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jun 2020 13:32:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/User-interactive-bucket-size-variables/m-p/1723096#M55025</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2020-06-29T13:32:30Z</dc:date>
    </item>
    <item>
      <title>Re: User interactive bucket size / variables</title>
      <link>https://community.qlik.com/t5/App-Development/User-interactive-bucket-size-variables/m-p/1723319#M55042</link>
      <description>&lt;P&gt;Yes, I would like to make it flexible to allow users to allow make changes on-demand.&amp;nbsp; &amp;nbsp;Any advice is appreciated&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jun 2020 01:22:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/User-interactive-bucket-size-variables/m-p/1723319#M55042</guid>
      <dc:creator>yipchunyu</dc:creator>
      <dc:date>2020-06-30T01:22:36Z</dc:date>
    </item>
    <item>
      <title>Re: User interactive bucket size / variables</title>
      <link>https://community.qlik.com/t5/App-Development/User-interactive-bucket-size-variables/m-p/1724683#M55175</link>
      <description>&lt;P&gt;sorry, any idea is welcomed.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Jul 2020 02:16:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/User-interactive-bucket-size-variables/m-p/1724683#M55175</guid>
      <dc:creator>yipchunyu</dc:creator>
      <dc:date>2020-07-03T02:16:38Z</dc:date>
    </item>
    <item>
      <title>Re: User interactive bucket size / variables</title>
      <link>https://community.qlik.com/t5/App-Development/User-interactive-bucket-size-variables/m-p/1724756#M55185</link>
      <description>&lt;P&gt;Up to now, I used some dull solutions as create certain variables and check against these on the dimension.&amp;nbsp; Any other better solution is welcomed.&lt;BR /&gt;&lt;BR /&gt;=If( Owner_Age&amp;gt;= $(vBktAge1) and Owner_Age &amp;lt; $(vBktAge2), Dual('['&amp;amp; $(vBktAge1) &amp;amp; ', ' &amp;amp; $(vBktAge2) &amp;amp; ']', 1) ,If(Owner_Age&amp;gt;= $(vBktAge2) and Owner_Age &amp;lt; $(vBktAge3), Dual('['&amp;amp; $(vBktAge2) &amp;amp; ', ' &amp;amp; $(vBktAge3) &amp;amp; ']', 2) ,If(Owner_Age &amp;gt;= $(vBktAge3) and Owner_Age &amp;lt; $(vBktAge4), Dual('['&amp;amp; $(vBktAge3) &amp;amp; ', ' &amp;amp; $(vBktAge4) &amp;amp; ']', 3) ,If(Owner_Age &amp;gt;= $(vBktAge4) and Owner_Age &amp;lt; $(vBktAge5), Dual('['&amp;amp; $(vBktAge4) &amp;amp; ', ' &amp;amp; $(vBktAge5) &amp;amp; ']', 4) ,If(Owner_Age &amp;gt;= $(vBktAge5), Dual('[&amp;gt;='&amp;amp; $(vBktAge5) &amp;amp; ']', 5))))) )&lt;/P&gt;</description>
      <pubDate>Fri, 03 Jul 2020 09:00:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/User-interactive-bucket-size-variables/m-p/1724756#M55185</guid>
      <dc:creator>yipchunyu</dc:creator>
      <dc:date>2020-07-03T09:00:35Z</dc:date>
    </item>
  </channel>
</rss>

