<?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: Store possible values of listbox into different variables in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Store-possible-values-of-listbox-into-different-variables/m-p/892344#M1006217</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Toni,&lt;/P&gt;&lt;P&gt;Thanks for the reply. Max(Month,1) returns&amp;nbsp; 3 here not the month name.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 20 May 2015 05:49:11 GMT</pubDate>
    <dc:creator>gauthamchilled</dc:creator>
    <dc:date>2015-05-20T05:49:11Z</dc:date>
    <item>
      <title>Store possible values of listbox into different variables</title>
      <link>https://community.qlik.com/t5/QlikView/Store-possible-values-of-listbox-into-different-variables/m-p/892342#M1006215</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How can i store the pssoble values of listbox in different variables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PFA,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want the variables to use in a chart dynamically&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 May 2015 04:32:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Store-possible-values-of-listbox-into-different-variables/m-p/892342#M1006215</guid>
      <dc:creator>gauthamchilled</dc:creator>
      <dc:date>2015-05-20T04:32:05Z</dc:date>
    </item>
    <item>
      <title>Re: Store possible values of listbox into different variables</title>
      <link>https://community.qlik.com/t5/QlikView/Store-possible-values-of-listbox-into-different-variables/m-p/892343#M1006216</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The aggregation function will target your current data set, which include both selected values and possible values. A list box shows the values in a field, so by using Concat() you can concatenate all values in the field. For example =Concat(DISTINCT Month, ',') gives you a comma separated list of the filed values. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am very unclear on why you want to store each value in separate variables. What is your use case with that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can pick a specific value from the list by using a function that allows indexes. For example =Max(Month) or &lt;SPAN style="font-size: 13.3333330154419px;"&gt;=Max(Month, 1) returns the largest value, while &lt;SPAN style="font-size: 13.3333330154419px;"&gt;=Max(Month, 3) gives the third largest.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 May 2015 04:44:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Store-possible-values-of-listbox-into-different-variables/m-p/892343#M1006216</guid>
      <dc:creator>ToniKautto</dc:creator>
      <dc:date>2015-05-20T04:44:29Z</dc:date>
    </item>
    <item>
      <title>Re: Store possible values of listbox into different variables</title>
      <link>https://community.qlik.com/t5/QlikView/Store-possible-values-of-listbox-into-different-variables/m-p/892344#M1006217</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Toni,&lt;/P&gt;&lt;P&gt;Thanks for the reply. Max(Month,1) returns&amp;nbsp; 3 here not the month name.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 May 2015 05:49:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Store-possible-values-of-listbox-into-different-variables/m-p/892344#M1006217</guid>
      <dc:creator>gauthamchilled</dc:creator>
      <dc:date>2015-05-20T05:49:11Z</dc:date>
    </item>
    <item>
      <title>Re: Store possible values of listbox into different variables</title>
      <link>https://community.qlik.com/t5/QlikView/Store-possible-values-of-listbox-into-different-variables/m-p/892345#M1006218</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i guess i have to use maxstring() but still Maxstring(field,1) not workin either&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 May 2015 05:51:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Store-possible-values-of-listbox-into-different-variables/m-p/892345#M1006218</guid>
      <dc:creator>gauthamchilled</dc:creator>
      <dc:date>2015-05-20T05:51:34Z</dc:date>
    </item>
    <item>
      <title>Re: Store possible values of listbox into different variables</title>
      <link>https://community.qlik.com/t5/QlikView/Store-possible-values-of-listbox-into-different-variables/m-p/892346#M1006219</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For 3rd min value you can try like:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;EM&gt;=FirstSortedValue(Month, Aggr(Month,Month),&lt;STRONG&gt;3&lt;/STRONG&gt;)&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 May 2015 05:56:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Store-possible-values-of-listbox-into-different-variables/m-p/892346#M1006219</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2015-05-20T05:56:02Z</dc:date>
    </item>
  </channel>
</rss>

