<?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: List box string help??? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/List-box-string-help/m-p/746798#M667016</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;=if(Left(PLANT, 1) = '5', PLANT &amp;amp; ' - ' &amp;amp; NAME1)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will also exclude nulls&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HTH&lt;/P&gt;&lt;P&gt;Jonathan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 01 Dec 2014 05:30:24 GMT</pubDate>
    <dc:creator>jonathandienst</dc:creator>
    <dc:date>2014-12-01T05:30:24Z</dc:date>
    <item>
      <title>List box string help???</title>
      <link>https://community.qlik.com/t5/QlikView/List-box-string-help/m-p/746797#M667015</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Folks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Looking for help below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm having list box like below as calculates expression &lt;/P&gt;&lt;P&gt;=if (not isnull(PLANT),PLANT &amp;amp; ' - ' &amp;amp; NAME1)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here PLANT = Plant numbers and NAME1 = Plant Description.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to show values in the list box starting with 5* along withdescription?????&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="jiveImage" src="https://community.qlik.com/legacyfs/online/72399_pastedImage_0.png" style="width: auto; height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&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>Mon, 01 Dec 2014 05:26:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/List-box-string-help/m-p/746797#M667015</guid>
      <dc:creator>amit_saini</dc:creator>
      <dc:date>2014-12-01T05:26:51Z</dc:date>
    </item>
    <item>
      <title>Re: List box string help???</title>
      <link>https://community.qlik.com/t5/QlikView/List-box-string-help/m-p/746798#M667016</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;=if(Left(PLANT, 1) = '5', PLANT &amp;amp; ' - ' &amp;amp; NAME1)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will also exclude nulls&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HTH&lt;/P&gt;&lt;P&gt;Jonathan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Dec 2014 05:30:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/List-box-string-help/m-p/746798#M667016</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2014-12-01T05:30:24Z</dc:date>
    </item>
    <item>
      <title>Re: List box string help???</title>
      <link>https://community.qlik.com/t5/QlikView/List-box-string-help/m-p/746799#M667017</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Jonathan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank u for your help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just want to ask you one more thing , Suppose I do have some plant number(i.e PLANT) not having description (i.e. NAME1) , so is there any way to show only&amp;nbsp; those Plant numbers having description in list box????&lt;/P&gt;&lt;P&gt;&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>Mon, 01 Dec 2014 06:36:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/List-box-string-help/m-p/746799#M667017</guid>
      <dc:creator>amit_saini</dc:creator>
      <dc:date>2014-12-01T06:36:47Z</dc:date>
    </item>
    <item>
      <title>Re: List box string help???</title>
      <link>https://community.qlik.com/t5/QlikView/List-box-string-help/m-p/746800#M667018</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;One more check would help there. May be like:&lt;/P&gt;&lt;P&gt;=if(&lt;STRONG&gt;Len(Trim(NAME1))&amp;gt;0 and&lt;/STRONG&gt; Left(PLANT, 1) = '5', PLANT &amp;amp; ' - ' &amp;amp; NAME1)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Dec 2014 06:42:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/List-box-string-help/m-p/746800#M667018</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2014-12-01T06:42:21Z</dc:date>
    </item>
  </channel>
</rss>

