<?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: Selectable expression in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Selectable-expression/m-p/417729#M487279</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi kinjal22,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me understand well with you. Is it [accnt] is your field? This field have data like '0000123000','0000456700','000089102000', right? And where you use this expression&lt;/P&gt;&lt;P&gt;=Sum({&amp;lt;[accnt]={'0000123000','0000456700','000089102000'}&amp;gt;} Poqty)? Which sheet object you use this expression? It is possible to share your app?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sokkorn&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 10 Feb 2013 10:51:24 GMT</pubDate>
    <dc:creator>Sokkorn</dc:creator>
    <dc:date>2013-02-10T10:51:24Z</dc:date>
    <item>
      <title>Selectable expression</title>
      <link>https://community.qlik.com/t5/QlikView/Selectable-expression/m-p/417725#M487275</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a expression where I sum a couple of values on a field.&lt;/P&gt;&lt;P&gt;I want to be able to through the list box only some of the values on the field and the sum should change. Currently this is not working.&lt;/P&gt;&lt;P&gt;Expression : &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;=&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Sum&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;({&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[accnt]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;={'0000123000','0000456700','000089102000'}&amp;gt;}&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Poqty&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;) &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Feb 2013 22:12:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Selectable-expression/m-p/417725#M487275</guid>
      <dc:creator />
      <dc:date>2013-02-07T22:12:36Z</dc:date>
    </item>
    <item>
      <title>Re: Selectable expression</title>
      <link>https://community.qlik.com/t5/QlikView/Selectable-expression/m-p/417726#M487276</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your syntax is fine for summing up only those three account numbers.&amp;nbsp; What exactly is your desired output? You may need to upload a sample file.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Feb 2013 22:36:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Selectable-expression/m-p/417726#M487276</guid>
      <dc:creator />
      <dc:date>2013-02-07T22:36:16Z</dc:date>
    </item>
    <item>
      <title>Re: Selectable expression</title>
      <link>https://community.qlik.com/t5/QlikView/Selectable-expression/m-p/417727#M487277</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your set analysis is working fine with static value from [accnt]. To make it dynamic, you need to get selected field value from other object (mostly ListBox). Now let try set analysis below:&lt;/P&gt;&lt;P&gt;=Sum({$&amp;lt; [accnt] = {$(=Concat(CHR(39) &amp;amp; [ListBoxField] &amp;amp; CHR(39),','))}&amp;gt;} Poqty)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know whether it work or not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sokkorn&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Feb 2013 01:42:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Selectable-expression/m-p/417727#M487277</guid>
      <dc:creator>Sokkorn</dc:creator>
      <dc:date>2013-02-08T01:42:23Z</dc:date>
    </item>
    <item>
      <title>Re: Selectable expression</title>
      <link>https://community.qlik.com/t5/QlikView/Selectable-expression/m-p/417728#M487278</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sokkorn,&lt;/P&gt;&lt;P&gt;I am not sure how I would be able to place this in my expression. I have to provide certain accnt numbers in the expression and I want to be able to select within those account numbers via a list box. In the above expression where will I provide those account numbers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Feb 2013 15:40:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Selectable-expression/m-p/417728#M487278</guid>
      <dc:creator />
      <dc:date>2013-02-08T15:40:13Z</dc:date>
    </item>
    <item>
      <title>Re: Selectable expression</title>
      <link>https://community.qlik.com/t5/QlikView/Selectable-expression/m-p/417729#M487279</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi kinjal22,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me understand well with you. Is it [accnt] is your field? This field have data like '0000123000','0000456700','000089102000', right? And where you use this expression&lt;/P&gt;&lt;P&gt;=Sum({&amp;lt;[accnt]={'0000123000','0000456700','000089102000'}&amp;gt;} Poqty)? Which sheet object you use this expression? It is possible to share your app?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sokkorn&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 10 Feb 2013 10:51:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Selectable-expression/m-p/417729#M487279</guid>
      <dc:creator>Sokkorn</dc:creator>
      <dc:date>2013-02-10T10:51:24Z</dc:date>
    </item>
  </channel>
</rss>

