<?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 List Box Expression in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/List-Box-Expression/m-p/855685#M299921</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a field called Name: And in that name i have like 10 subfields and i need to display only 3 subfields in a list box..I have given the following expression..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=if(name ='A1' or name ='A2' or name ='A3',name)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In chart dimension it is working fine but when i take in list box it is not working..Can you please help me how to do it.. i need to filter in only list box..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Bharat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 27 May 2015 05:50:22 GMT</pubDate>
    <dc:creator>bharatkishore</dc:creator>
    <dc:date>2015-05-27T05:50:22Z</dc:date>
    <item>
      <title>List Box Expression</title>
      <link>https://community.qlik.com/t5/QlikView/List-Box-Expression/m-p/855685#M299921</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a field called Name: And in that name i have like 10 subfields and i need to display only 3 subfields in a list box..I have given the following expression..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=if(name ='A1' or name ='A2' or name ='A3',name)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In chart dimension it is working fine but when i take in list box it is not working..Can you please help me how to do it.. i need to filter in only list box..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Bharat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 May 2015 05:50:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/List-Box-Expression/m-p/855685#M299921</guid>
      <dc:creator>bharatkishore</dc:creator>
      <dc:date>2015-05-27T05:50:22Z</dc:date>
    </item>
    <item>
      <title>Re: List Box Expression</title>
      <link>https://community.qlik.com/t5/QlikView/List-Box-Expression/m-p/855686#M299922</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try&lt;/P&gt;&lt;P&gt;=if(match(name,'A1','A2','A3'),name)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 May 2015 05:54:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/List-Box-Expression/m-p/855686#M299922</guid>
      <dc:creator>danieloberbilli</dc:creator>
      <dc:date>2015-05-27T05:54:13Z</dc:date>
    </item>
    <item>
      <title>Re: List Box Expression</title>
      <link>https://community.qlik.com/t5/QlikView/List-Box-Expression/m-p/855687#M299923</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Bharat,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Two ways:&lt;/P&gt;&lt;P&gt;Script side:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where match(name,'A1','A2','A3') ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Front End:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=if(match(name,'A1','A2','A3'),name)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;AS&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 May 2015 06:05:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/List-Box-Expression/m-p/855687#M299923</guid>
      <dc:creator>amit_saini</dc:creator>
      <dc:date>2015-05-27T06:05:27Z</dc:date>
    </item>
    <item>
      <title>Re: List Box Expression</title>
      <link>https://community.qlik.com/t5/QlikView/List-Box-Expression/m-p/855688#M299924</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Better to do in a script as below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;if(match(name,'A1','A2','A3'),name) as Name_New&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;And use this &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;STRONG&gt;Name_New&lt;/STRONG&gt; field in frontend&lt;/SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 May 2015 06:10:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/List-Box-Expression/m-p/855688#M299924</guid>
      <dc:creator>sagarkharpude</dc:creator>
      <dc:date>2015-05-27T06:10:25Z</dc:date>
    </item>
    <item>
      <title>Re: List Box Expression</title>
      <link>https://community.qlik.com/t5/QlikView/List-Box-Expression/m-p/855689#M299925</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi.....&lt;/P&gt;&lt;P&gt;Please find the attached Qvw.&lt;/P&gt;&lt;P&gt;Please Refer the&amp;nbsp; example.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 May 2015 06:10:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/List-Box-Expression/m-p/855689#M299925</guid>
      <dc:creator>prajapatiamar38</dc:creator>
      <dc:date>2015-05-27T06:10:27Z</dc:date>
    </item>
    <item>
      <title>Re: List Box Expression</title>
      <link>https://community.qlik.com/t5/QlikView/List-Box-Expression/m-p/855690#M299926</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;=Aggr(Only({&amp;lt;name = {'A1', 'A2', 'A3'}&amp;gt;} name), name)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 May 2015 06:13:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/List-Box-Expression/m-p/855690#M299926</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2015-05-27T06:13:28Z</dc:date>
    </item>
    <item>
      <title>Re: List Box Expression</title>
      <link>https://community.qlik.com/t5/QlikView/List-Box-Expression/m-p/855691#M299927</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Amarnath&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 May 2015 06:31:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/List-Box-Expression/m-p/855691#M299927</guid>
      <dc:creator>bharatkishore</dc:creator>
      <dc:date>2015-05-27T06:31:38Z</dc:date>
    </item>
  </channel>
</rss>

