<?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 How to save possible values of a field in a variable? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-save-possible-values-of-a-field-in-a-variable/m-p/308426#M113874</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can do something like concat(DISTINCT YOUR_FIELD,',')&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 26 Jul 2011 14:22:59 GMT</pubDate>
    <dc:creator>danielrozental</dc:creator>
    <dc:date>2011-07-26T14:22:59Z</dc:date>
    <item>
      <title>How to save possible values of a field in a variable?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-save-possible-values-of-a-field-in-a-variable/m-p/308425#M113873</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;in my QlikView document I would like to save into a variable all the possible value of a field.&lt;/P&gt;&lt;P&gt;Is it there a function like "getFieldSelections()" but for the possible values (I mean all those showed in white) instead of the selected ones?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Alessandro.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Jul 2011 14:21:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-save-possible-values-of-a-field-in-a-variable/m-p/308425#M113873</guid>
      <dc:creator />
      <dc:date>2011-07-26T14:21:10Z</dc:date>
    </item>
    <item>
      <title>How to save possible values of a field in a variable?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-save-possible-values-of-a-field-in-a-variable/m-p/308426#M113874</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can do something like concat(DISTINCT YOUR_FIELD,',')&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Jul 2011 14:22:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-save-possible-values-of-a-field-in-a-variable/m-p/308426#M113874</guid>
      <dc:creator>danielrozental</dc:creator>
      <dc:date>2011-07-26T14:22:59Z</dc:date>
    </item>
    <item>
      <title>How to save possible values of a field in a variable?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-save-possible-values-of-a-field-in-a-variable/m-p/308427#M113875</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In this way I can concatenate all the values of a field inside an object like a straight table, isn't it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My need is to save in any moment all the selectable values of a field, depending on the selections activated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jul 2011 08:37:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-save-possible-values-of-a-field-in-a-variable/m-p/308427#M113875</guid>
      <dc:creator />
      <dc:date>2011-07-27T08:37:03Z</dc:date>
    </item>
    <item>
      <title>How to save possible values of a field in a variable?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-save-possible-values-of-a-field-in-a-variable/m-p/308428#M113876</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; if you a save a table execute Excel with a command EXECUTE and save your data in Execel or in a file TXT.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jul 2011 08:43:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-save-possible-values-of-a-field-in-a-variable/m-p/308428#M113876</guid>
      <dc:creator />
      <dc:date>2011-07-27T08:43:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to save possible values of a field in a variable?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-save-possible-values-of-a-field-in-a-variable/m-p/308429#M113877</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Alessandro,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Elaborating a bit Daniel Rozental's solution, you can create a variable in the Settings menu, Variable Overview, with the following expression:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code"&gt;&lt;P&gt;=Concat(DISTINCT Field, ';')&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Using the semicolon so the variable can have the values formatted properly&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://community.qlik.com/people/mabaeyens" style="font-size: 12px; outline-style: none; padding-top: 1px; padding-bottom: 1px; padding-left: 17px; color: #007fc0; zoom: 1; background-position: no-repeat no-repeat;"&gt;Miguel Angel Baeyens&lt;/A&gt;&lt;/P&gt;&lt;P&gt;BI Consultant&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://www.grupocomex.com/" style="font-size: 12px; outline-style: none; color: #007fc0;"&gt;Comex Grupo Ibérica&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jul 2011 08:51:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-save-possible-values-of-a-field-in-a-variable/m-p/308429#M113877</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2011-07-27T08:51:01Z</dc:date>
    </item>
    <item>
      <title>How to save possible values of a field in a variable?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-save-possible-values-of-a-field-in-a-variable/m-p/308430#M113878</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Miguel,&lt;/P&gt;&lt;P&gt;I was just answering that the solution proposed by Daniel is good.&lt;BR /&gt;I tried exactly what you proposed in you post.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Great! &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot,&lt;/P&gt;&lt;P&gt; Alessandro&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jul 2011 08:54:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-save-possible-values-of-a-field-in-a-variable/m-p/308430#M113878</guid>
      <dc:creator />
      <dc:date>2011-07-27T08:54:27Z</dc:date>
    </item>
  </channel>
</rss>

