<?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: Excluding Null &amp; unrequired values from a list box in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Excluding-Null-unrequired-values-from-a-list-box/m-p/1111283#M367548</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Helen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=If(len(If(WildMatch(Care_Group,'Division*'), 0, Care_Group))&amp;gt;0,Care_Group)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 20 Jul 2016 16:00:39 GMT</pubDate>
    <dc:creator>narendiran</dc:creator>
    <dc:date>2016-07-20T16:00:39Z</dc:date>
    <item>
      <title>Excluding Null &amp; unrequired values from a list box</title>
      <link>https://community.qlik.com/t5/QlikView/Excluding-Null-unrequired-values-from-a-list-box/m-p/1111281#M367546</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Qlikview user&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With the help of the community I have a list of values I want to exclude from a list box, by using Wildmatch&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=If(WildMatch(Care_Group,'Division*'), 0, Care_Group)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However when I select from the List Box there is an empty value at the bottom, where the user still has the ability to make the selection&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See Attached Example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I now feel as though I need to wrap another function around my statement in order to suppress the values I want excluded&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could someone kindly help me with the following statement so that I can suppress the values I want to exclude&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Neither of these work:&lt;/P&gt;&lt;P&gt;=If(IsNull(WildMatch(Care_Group,'Division*')), 0, Care_Group)&lt;/P&gt;&lt;P&gt;=If(Len(WildMatch(Care_Group,'Division*')),0)&amp;gt;0,Care_Group)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could someone kindly advise?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards&lt;/P&gt;&lt;P&gt;Helen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Jul 2016 15:50:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Excluding-Null-unrequired-values-from-a-list-box/m-p/1111281#M367546</guid>
      <dc:creator>helen_pip</dc:creator>
      <dc:date>2016-07-20T15:50:08Z</dc:date>
    </item>
    <item>
      <title>Re: Excluding Null &amp; unrequired values from a list box</title>
      <link>https://community.qlik.com/t5/QlikView/Excluding-Null-unrequired-values-from-a-list-box/m-p/1111282#M367547</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So you want the empty space to go away or become 0?&lt;/P&gt;&lt;P&gt;If it needs to go away, then try this:&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;&lt;STRONG&gt;=If(Len(Trim(Care_Group)) &amp;gt; 0, &lt;/STRONG&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;&lt;STRONG&gt;&amp;nbsp; If(WildMatch(Care_Group,'Division*'), 0, Care_Group))&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it needs to become part of 0, then may be this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;STRONG&gt;=If(Len(Trim(Care_Group)) &amp;gt; 0 or &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;STRONG&gt;WildMatch(Care_Group,'Division*'), 0, Care_Group))&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Jul 2016 15:54:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Excluding-Null-unrequired-values-from-a-list-box/m-p/1111282#M367547</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-07-20T15:54:02Z</dc:date>
    </item>
    <item>
      <title>Re: Excluding Null &amp; unrequired values from a list box</title>
      <link>https://community.qlik.com/t5/QlikView/Excluding-Null-unrequired-values-from-a-list-box/m-p/1111283#M367548</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Helen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=If(len(If(WildMatch(Care_Group,'Division*'), 0, Care_Group))&amp;gt;0,Care_Group)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Jul 2016 16:00:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Excluding-Null-unrequired-values-from-a-list-box/m-p/1111283#M367548</guid>
      <dc:creator>narendiran</dc:creator>
      <dc:date>2016-07-20T16:00:39Z</dc:date>
    </item>
    <item>
      <title>Re: Excluding Null &amp; unrequired values from a list box</title>
      <link>https://community.qlik.com/t5/QlikView/Excluding-Null-unrequired-values-from-a-list-box/m-p/1111284#M367549</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello again Sunny!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for spending the time to help me&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your first suggestion just gives me an empty value option at the bottom of the list box, which will enable the user to still make a selection&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;=If(Len(Trim(Care_Group)) &amp;gt; 0,&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&amp;nbsp; If(WildMatch(Care_Group,'Division*'), 0, Care_Group))&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your second suggestion, only returns a 0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;=If(Len(Trim(Care_Group)) &amp;gt; 0 or &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;WildMatch(Care_Group,'Division*'), 0, Care_Group))&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;I would like it so the 0 dissapears from the list box and I want the empty space to go away&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;Do you kindly have any other suggestions?&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;Kind Regards&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;Helen&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Jul 2016 16:10:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Excluding-Null-unrequired-values-from-a-list-box/m-p/1111284#M367549</guid>
      <dc:creator>helen_pip</dc:creator>
      <dc:date>2016-07-20T16:10:59Z</dc:date>
    </item>
    <item>
      <title>Re: Excluding Null &amp; unrequired values from a list box</title>
      <link>https://community.qlik.com/t5/QlikView/Excluding-Null-unrequired-values-from-a-list-box/m-p/1111285#M367550</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How about this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;=If(Len(Trim(Care_Group)) = 0 or &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG style="font-style: inherit; font-family: inherit; line-height: 1.5em;"&gt;WildMatch(Care_Group,'Division*'), Null(), Care_Group))&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Jul 2016 16:13:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Excluding-Null-unrequired-values-from-a-list-box/m-p/1111285#M367550</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-07-20T16:13:30Z</dc:date>
    </item>
    <item>
      <title>Re: Excluding Null &amp; unrequired values from a list box</title>
      <link>https://community.qlik.com/t5/QlikView/Excluding-Null-unrequired-values-from-a-list-box/m-p/1111286#M367551</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Sunny T&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This works for me&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for all your help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards&lt;/P&gt;&lt;P&gt;Helen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Jul 2016 16:17:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Excluding-Null-unrequired-values-from-a-list-box/m-p/1111286#M367551</guid>
      <dc:creator>helen_pip</dc:creator>
      <dc:date>2016-07-20T16:17:58Z</dc:date>
    </item>
  </channel>
</rss>

