<?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 Limited listbox in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Limited-listbox/m-p/248695#M1205946</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How can I create a limited set listbox that only shows names that begin with the letters 'BA' for example? I'm trying to create a toggle to allow my charts to eliminate customers that have names beginning with a certain sequence of letters; I need to create the list box to create the appropriate bookmark and apply it to a button. Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 24 Mar 2010 19:52:41 GMT</pubDate>
    <dc:creator />
    <dc:date>2010-03-24T19:52:41Z</dc:date>
    <item>
      <title>Limited listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Limited-listbox/m-p/248695#M1205946</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How can I create a limited set listbox that only shows names that begin with the letters 'BA' for example? I'm trying to create a toggle to allow my charts to eliminate customers that have names beginning with a certain sequence of letters; I need to create the list box to create the appropriate bookmark and apply it to a button. Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Mar 2010 19:52:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Limited-listbox/m-p/248695#M1205946</guid>
      <dc:creator />
      <dc:date>2010-03-24T19:52:41Z</dc:date>
    </item>
    <item>
      <title>Limited listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Limited-listbox/m-p/248696#M1205947</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Create a list box, and instead of selecting a field, select "&amp;lt;Expression&amp;gt;". Enter if(left(name,2)='BA',name). You should then have a list box of names that start with BA.&lt;/P&gt;&lt;P&gt;There are other ways to handle what you want than a list box, button and bookmark, though. As one example, create a field, "Eliminate Customers With Names Starting with BA?" with value Y for customer names that DON'T start with BA, and null for customer names that DO start with BA. Or use the full name of the field instead of Y and display as a checkbox. If they select Y (or checkmark the field), all customers with names starting with BA will be excluded.&lt;/P&gt;&lt;P&gt;Generally speaking, I try to work with QlikView's normal associative logic and normal interface rather than adding buttons, macros, bookmarks, and so on. I figure that having a consistent, generic QlikView interface for each application will pay off in simplified user training. And it can be simpler for maintenance as well. If all of your applications are filled with buttons, of course, your users will be used to that, and that could then be the better approach in your case.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Mar 2010 20:04:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Limited-listbox/m-p/248696#M1205947</guid>
      <dc:creator>johnw</dc:creator>
      <dc:date>2010-03-24T20:04:06Z</dc:date>
    </item>
    <item>
      <title>Limited listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Limited-listbox/m-p/248697#M1205948</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you John! I was looking for a way to list these without a sum() function.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Mar 2010 21:30:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Limited-listbox/m-p/248697#M1205948</guid>
      <dc:creator />
      <dc:date>2010-03-24T21:30:57Z</dc:date>
    </item>
    <item>
      <title>Limited listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Limited-listbox/m-p/248698#M1205949</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As a quick follow-up, wondering how I'd go about listing all the names with 'BA' anywhere in the name. I tried the following expression, but it doesn't work. Can you advise? Thank you in advance.&lt;/P&gt;&lt;P&gt;=if(name='*BA*',name)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Mar 2010 21:50:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Limited-listbox/m-p/248698#M1205949</guid>
      <dc:creator />
      <dc:date>2010-03-24T21:50:40Z</dc:date>
    </item>
    <item>
      <title>Limited listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Limited-listbox/m-p/248699#M1205950</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think this:&lt;/P&gt;&lt;P style="padding-left:30px;"&gt;if(wildmatch(name,'*BA*'),name)&lt;/P&gt;&lt;P&gt;Edit: or either of these:&lt;/P&gt;&lt;P style="padding-left:30px;"&gt;if(index(name,'BA'),name)&lt;BR /&gt;if(substringcount(name,'BA'),name)&lt;/P&gt;&lt;P style="padding-left:30px;"&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Mar 2010 21:56:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Limited-listbox/m-p/248699#M1205950</guid>
      <dc:creator>johnw</dc:creator>
      <dc:date>2010-03-24T21:56:27Z</dc:date>
    </item>
    <item>
      <title>Limited listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Limited-listbox/m-p/248700#M1205951</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This solved my question exactly. Thanks again.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Mar 2010 23:09:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Limited-listbox/m-p/248700#M1205951</guid>
      <dc:creator />
      <dc:date>2010-03-24T23:09:42Z</dc:date>
    </item>
    <item>
      <title>Re: Limited listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Limited-listbox/m-p/248701#M1205952</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorted out a big issue for me too!!! Thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Aug 2012 13:33:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Limited-listbox/m-p/248701#M1205952</guid>
      <dc:creator />
      <dc:date>2012-08-14T13:33:55Z</dc:date>
    </item>
  </channel>
</rss>

