<?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: Variable defined buckets and user input in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Variable-defined-buckets-and-user-input/m-p/1600574#M444241</link>
    <description>&lt;P&gt;A little tweak in variable:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture1.JPG" style="width: 605px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/15162i8B2A65FB05A18469/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture1.JPG" alt="Capture1.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Dimension &amp;amp; Expressions:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.JPG" style="width: 840px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/15163i86C881387F60E571/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.JPG" alt="Capture.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 09 Jul 2019 18:48:35 GMT</pubDate>
    <dc:creator>neelamsaroha157</dc:creator>
    <dc:date>2019-07-09T18:48:35Z</dc:date>
    <item>
      <title>Variable defined buckets and user input</title>
      <link>https://community.qlik.com/t5/QlikView/Variable-defined-buckets-and-user-input/m-p/1600512#M444228</link>
      <description>&lt;P&gt;Looking to do the following but cant quite get it right.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Player_ID,&lt;/P&gt;&lt;P&gt;If ( Score &amp;gt;= 100 ), 'Expert','Novice' as Skill_Level&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;//If score or points greater than 100 then 'Expert'&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; otherwise novice&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then in the front end I have a set analysis expression which counts no of players based on this field&amp;nbsp;&lt;/P&gt;&lt;P&gt;=Num(COUNT({&amp;lt;Skill_Level ={'Expert'},DISTINCT Player_ID)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What I want is a variable driven user input box which allows the user to&amp;nbsp; enter&amp;nbsp; a value for the 'score' and for the set analysis to update given this value.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Jul 2019 16:11:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Variable-defined-buckets-and-user-input/m-p/1600512#M444228</guid>
      <dc:creator>egbert_jones</dc:creator>
      <dc:date>2019-07-09T16:11:22Z</dc:date>
    </item>
    <item>
      <title>Re: Variable defined buckets and user input</title>
      <link>https://community.qlik.com/t5/QlikView/Variable-defined-buckets-and-user-input/m-p/1600524#M444231</link>
      <description>&lt;P&gt;create an input box. populate it with a variable 'vScore'&lt;/P&gt;&lt;P&gt;change your set expression for experts:&lt;/P&gt;&lt;P&gt;=Num(COUNT({&amp;lt;Skill_Level =&lt;STRONG&gt;&lt;SPAN&gt;{"&amp;gt;=$(=vScore)}&amp;gt;"}&lt;/SPAN&gt;&lt;/STRONG&gt;,DISTINCT Player_ID)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;for novice:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;=Num(COUNT({&amp;lt;Skill_Level =&lt;STRONG&gt;&lt;SPAN&gt;{"&amp;lt;$(=vScore)}&amp;gt;"}&lt;/SPAN&gt;&lt;/STRONG&gt;,DISTINCT Player_ID)&lt;/P&gt;&lt;P&gt;May need to play with it incase I made a syntax error but it should work. The point is you can use less than or greater than a variable within the set analysis itself.&lt;/P&gt;&lt;P&gt;Your other methods is not going to work because you're using a variable calculated at script level. It needs to be calculated dynamically by the expression according to the user inputted variable value.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Jul 2019 16:22:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Variable-defined-buckets-and-user-input/m-p/1600524#M444231</guid>
      <dc:creator>acsaggar</dc:creator>
      <dc:date>2019-07-09T16:22:25Z</dc:date>
    </item>
    <item>
      <title>Re: Variable defined buckets and user input</title>
      <link>https://community.qlik.com/t5/QlikView/Variable-defined-buckets-and-user-input/m-p/1600548#M444237</link>
      <description>&lt;P&gt;You may create 2 variable as shown below and use vVar2 in your expression.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.JPG" style="width: 672px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/15160i538930C571487316/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.JPG" alt="Capture.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Jul 2019 17:25:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Variable-defined-buckets-and-user-input/m-p/1600548#M444237</guid>
      <dc:creator>neelamsaroha157</dc:creator>
      <dc:date>2019-07-09T17:25:19Z</dc:date>
    </item>
    <item>
      <title>Re: Variable defined buckets and user input</title>
      <link>https://community.qlik.com/t5/QlikView/Variable-defined-buckets-and-user-input/m-p/1600561#M444239</link>
      <description>&lt;P&gt;Thanks - what about the set analysis expression ?&lt;/P&gt;</description>
      <pubDate>Tue, 09 Jul 2019 17:51:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Variable-defined-buckets-and-user-input/m-p/1600561#M444239</guid>
      <dc:creator>egbert_jones</dc:creator>
      <dc:date>2019-07-09T17:51:54Z</dc:date>
    </item>
    <item>
      <title>Re: Variable defined buckets and user input</title>
      <link>https://community.qlik.com/t5/QlikView/Variable-defined-buckets-and-user-input/m-p/1600574#M444241</link>
      <description>&lt;P&gt;A little tweak in variable:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture1.JPG" style="width: 605px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/15162i8B2A65FB05A18469/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture1.JPG" alt="Capture1.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Dimension &amp;amp; Expressions:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.JPG" style="width: 840px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/15163i86C881387F60E571/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.JPG" alt="Capture.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Jul 2019 18:48:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Variable-defined-buckets-and-user-input/m-p/1600574#M444241</guid>
      <dc:creator>neelamsaroha157</dc:creator>
      <dc:date>2019-07-09T18:48:35Z</dc:date>
    </item>
    <item>
      <title>Re: Variable defined buckets and user input</title>
      <link>https://community.qlik.com/t5/QlikView/Variable-defined-buckets-and-user-input/m-p/1600588#M444243</link>
      <description>&lt;P&gt;sorry it's score rather than skill_level field but same thing&lt;/P&gt;</description>
      <pubDate>Tue, 09 Jul 2019 19:13:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Variable-defined-buckets-and-user-input/m-p/1600588#M444243</guid>
      <dc:creator>acsaggar</dc:creator>
      <dc:date>2019-07-09T19:13:51Z</dc:date>
    </item>
  </channel>
</rss>

