<?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 names from a Listbox in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Excluding-names-from-a-Listbox/m-p/395065#M569802</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I can imagine you immediately went to the expressions tab.&lt;/P&gt;&lt;P&gt;I think it works as follows:&lt;/P&gt;&lt;P&gt;- the place I suggested is the (only) place to define which attribute (or expression) is the attribute for your listbox&lt;/P&gt;&lt;P&gt;- the place on the expression tab is a way to add extra information. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;An example is that in the expression-tab you add count(FIELDNAME) which is the same as the checkbox "show frequency" that you have on the "general tab"...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can imagine that sometimes you have a more complex expression than a count... so in that case you can do what you want on the "expressions tab"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PS: I'm curious what your hairdo looks like currently &lt;span class="lia-unicode-emoji" title=":face_with_tongue:"&gt;😛&lt;/span&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 09 Oct 2012 13:50:45 GMT</pubDate>
    <dc:creator />
    <dc:date>2012-10-09T13:50:45Z</dc:date>
    <item>
      <title>Excluding names from a Listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Excluding-names-from-a-Listbox/m-p/395056#M569793</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm struggling to exclude certain names from a Listbox I have created - Field is CVsSent.CONSULTANT. As it stands, the listbox is displaying every person's name in the company but i'd like to remove / hide a few of them if possible so they no longer feature in the box.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;John&lt;/P&gt;&lt;P&gt;Paul&lt;/P&gt;&lt;P&gt;James&lt;/P&gt;&lt;P&gt;Sarah&lt;/P&gt;&lt;P&gt;Julia&lt;/P&gt;&lt;P&gt;Jon&lt;/P&gt;&lt;P&gt;Simon&lt;/P&gt;&lt;P&gt;Andrew&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How would I go about removing Jon, Simon and Andrew so they are no longer displayed in the Listbox? I'm guessing by adding an expression in the ListBox properties but each time I do, it doesn't work. I think it's something basic but I'm very new to this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks so much,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Lindsay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Oct 2012 13:05:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Excluding-names-from-a-Listbox/m-p/395056#M569793</guid>
      <dc:creator />
      <dc:date>2012-10-09T13:05:47Z</dc:date>
    </item>
    <item>
      <title>Re: Excluding names from a Listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Excluding-names-from-a-Listbox/m-p/395057#M569794</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'm using this expression in listbox to do the same thing :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=AGGR(ONLY({&amp;lt;NodeName-={'AAAA','BBBBB','CCCC','.....',}&amp;gt;} NodeName),NodeName)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Replace Nodename with your field and write name in the set analysis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Oct 2012 13:10:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Excluding-names-from-a-Listbox/m-p/395057#M569794</guid>
      <dc:creator>christophebrault</dc:creator>
      <dc:date>2012-10-09T13:10:42Z</dc:date>
    </item>
    <item>
      <title>Re: Excluding names from a Listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Excluding-names-from-a-Listbox/m-p/395058#M569795</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Add the following expression in your listbox (assuming your fieldname is indeed CVsSent.CONSULTANT)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(&amp;nbsp; &lt;/P&gt;&lt;P&gt;CVsSent.CONSULTANT &amp;lt;&amp;gt;'Jon' and &lt;/P&gt;&lt;P&gt;CVsSent.CONSULTANT &amp;lt;&amp;gt;'Simon' and &lt;/P&gt;&lt;P&gt;CVsSent.CONSULTANT &amp;lt;&amp;gt;'Andrew' ,&lt;/P&gt;&lt;P&gt;CVsSent.CONSULTANT)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note by the way that users may probably add their own listboxes (when viewing this application on the Accesspoint). Perhaps a thing to keep in mind while adding security (if needed)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Oct 2012 13:13:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Excluding-names-from-a-Listbox/m-p/395058#M569795</guid>
      <dc:creator />
      <dc:date>2012-10-09T13:13:16Z</dc:date>
    </item>
    <item>
      <title>Re: Excluding names from a Listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Excluding-names-from-a-Listbox/m-p/395059#M569796</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks for coming back to me. I've tried this but all names are still displayed and each name in the box now has a Null Symbol next to it. i.e. -&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Expression now looks like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=AGGR(ONLY({&amp;lt;CVsSent.CONSULTANT-={'Jon','Simon','Andrew',}&amp;gt;} CVsSent.CONSULTANT),CVsSent.CONSULTANT)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Result is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;John&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; -&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;Paul&lt;SPAN style="color: #737373; font-family: Arial; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; -&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;James&lt;SPAN style="color: #737373; font-family: Arial; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; -&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;Sarah&amp;nbsp;&amp;nbsp;&amp;nbsp; -&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;Julia&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; -&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;Jon&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; -&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;Simon&amp;nbsp;&amp;nbsp; -&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;Andrew&amp;nbsp; -&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Oct 2012 13:28:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Excluding-names-from-a-Listbox/m-p/395059#M569796</guid>
      <dc:creator />
      <dc:date>2012-10-09T13:28:41Z</dc:date>
    </item>
    <item>
      <title>Re: Excluding names from a Listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Excluding-names-from-a-Listbox/m-p/395060#M569797</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;BR /&gt;Make sure you _don't_ add this expression on the expression tab.&lt;/P&gt;&lt;P&gt;Add the expression in the following way: on the tab "general" of your listbox you see the dropdown where you choose which field should be active in the listbox. There use the lowest option, named "&amp;lt;Expression&amp;gt;". When selected, a dialogue popsup where one of our expressions should be placed to get it working &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Oct 2012 13:31:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Excluding-names-from-a-Listbox/m-p/395060#M569797</guid>
      <dc:creator />
      <dc:date>2012-10-09T13:31:27Z</dc:date>
    </item>
    <item>
      <title>Re: Excluding names from a Listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Excluding-names-from-a-Listbox/m-p/395061#M569798</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, thanks also for replying. I've done absolutely what you have suggested but now what happens is every name that i want to remain in the list is now duplicated and the ones i want to remove have a null symbol, i.e. -&amp;nbsp;&amp;nbsp; next to their names.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So it looks something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alex&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Alex&lt;/P&gt;&lt;P&gt;Jon&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; -&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Appreciate the help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thx,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Oct 2012 13:33:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Excluding-names-from-a-Listbox/m-p/395061#M569798</guid>
      <dc:creator />
      <dc:date>2012-10-09T13:33:53Z</dc:date>
    </item>
    <item>
      <title>Re: Excluding names from a Listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Excluding-names-from-a-Listbox/m-p/395062#M569799</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok... Are you sure that the fieldname you use is correct? And/or there is no syntax error in your expression?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I added a sample qvw where both my expression is working and the aggr/only expression. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps if you check the expression in this sample qvw...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If not, don't hesitate to let me know.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Oct 2012 13:38:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Excluding-names-from-a-Listbox/m-p/395062#M569799</guid>
      <dc:creator />
      <dc:date>2012-10-09T13:38:50Z</dc:date>
    </item>
    <item>
      <title>Re: Excluding names from a Listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Excluding-names-from-a-Listbox/m-p/395063#M569800</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You're absolutely right!! I was going to List Box Properties and going straight to the Expressions tab, then 'Add'. I've been pulling my hair out on this one for the whole morning lol so thank you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you explain what the difference is between doing it the way you suggested and the way i tried. i.e. why does it work your way and not through the expressions tab?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Oct 2012 13:43:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Excluding-names-from-a-Listbox/m-p/395063#M569800</guid>
      <dc:creator />
      <dc:date>2012-10-09T13:43:20Z</dc:date>
    </item>
    <item>
      <title>Re: Excluding names from a Listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Excluding-names-from-a-Listbox/m-p/395064#M569801</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Because expression tab add an expression using your listbox as a dimension. &lt;/P&gt;&lt;P&gt;It's like a straight table.&lt;/P&gt;&lt;P&gt;Using an expression instead of a field for your listbox will change the dimension.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Oct 2012 13:50:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Excluding-names-from-a-Listbox/m-p/395064#M569801</guid>
      <dc:creator>christophebrault</dc:creator>
      <dc:date>2012-10-09T13:50:27Z</dc:date>
    </item>
    <item>
      <title>Re: Excluding names from a Listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Excluding-names-from-a-Listbox/m-p/395065#M569802</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I can imagine you immediately went to the expressions tab.&lt;/P&gt;&lt;P&gt;I think it works as follows:&lt;/P&gt;&lt;P&gt;- the place I suggested is the (only) place to define which attribute (or expression) is the attribute for your listbox&lt;/P&gt;&lt;P&gt;- the place on the expression tab is a way to add extra information. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;An example is that in the expression-tab you add count(FIELDNAME) which is the same as the checkbox "show frequency" that you have on the "general tab"...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can imagine that sometimes you have a more complex expression than a count... so in that case you can do what you want on the "expressions tab"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PS: I'm curious what your hairdo looks like currently &lt;span class="lia-unicode-emoji" title=":face_with_tongue:"&gt;😛&lt;/span&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Oct 2012 13:50:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Excluding-names-from-a-Listbox/m-p/395065#M569802</guid>
      <dc:creator />
      <dc:date>2012-10-09T13:50:45Z</dc:date>
    </item>
    <item>
      <title>Re: Excluding names from a Listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Excluding-names-from-a-Listbox/m-p/395066#M569803</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It's now growing back &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In terms of applying the same expression to a chart, would I be right in saying that I don't go to the Expressions tab and add this as a new expression...?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;currently i've just got Count (CVsSent.CONSULTANT)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Oct 2012 14:22:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Excluding-names-from-a-Listbox/m-p/395066#M569803</guid>
      <dc:creator />
      <dc:date>2012-10-09T14:22:02Z</dc:date>
    </item>
    <item>
      <title>Re: Excluding names from a Listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Excluding-names-from-a-Listbox/m-p/395067#M569804</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So in your chart you count cvssent.consultant&lt;/P&gt;&lt;P&gt;But What is your dimension?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Oct 2012 14:41:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Excluding-names-from-a-Listbox/m-p/395067#M569804</guid>
      <dc:creator />
      <dc:date>2012-10-09T14:41:38Z</dc:date>
    </item>
    <item>
      <title>Re: Excluding names from a Listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Excluding-names-from-a-Listbox/m-p/395068#M569805</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I hope you didn't miss the bit that said i was new to this &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Used Dimensions is currently CVsSent.CONSULTANT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm assuming that's where you mean?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Oct 2012 14:53:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Excluding-names-from-a-Listbox/m-p/395068#M569805</guid>
      <dc:creator />
      <dc:date>2012-10-09T14:53:41Z</dc:date>
    </item>
    <item>
      <title>Re: Excluding names from a Listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Excluding-names-from-a-Listbox/m-p/395069#M569806</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi huncie247,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes, that's basically what I mean. But that would mean that your chart shows a count of CVsSent.Consultant per CVsSent.Consultant. Does that make sense? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In that case, your dimension can be a calculated dimension (just click edit on the dimension tab and paste there the same code as you put in&amp;nbsp; your listbox). Your expression can stay "as is"&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Oct 2012 16:44:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Excluding-names-from-a-Listbox/m-p/395069#M569806</guid>
      <dc:creator />
      <dc:date>2012-10-09T16:44:57Z</dc:date>
    </item>
    <item>
      <title>Re: Excluding names from a Listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Excluding-names-from-a-Listbox/m-p/395070#M569807</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Roberto, been out of the office for the last few days and just come back to this. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yep, that's great and has worked. For some reason though, my chart shows 8 names in a bar chart format which is fine and expected, but there is now a 9th bar at the end which appears to be a view of the total count of all 8 names. No name appears under it, just a - symbol. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Similarly, if i hover the mouse over each bar, it displays the "if" expression and then the total number. i.e.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;if( &lt;/P&gt;&lt;P style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;CVsSent.CONSULTANT &amp;lt;&amp;gt;'Jon' and&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;CVsSent.CONSULTANT &amp;lt;&amp;gt;'Simon' and&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;CVsSent.CONSULTANT &amp;lt;&amp;gt;'Andrew' ,&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;CVsSent.CONSULTANT)&lt;/P&gt;&lt;P&gt;=154&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thx,&lt;/P&gt;&lt;P&gt;L&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2012 14:57:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Excluding-names-from-a-Listbox/m-p/395070#M569807</guid>
      <dc:creator />
      <dc:date>2012-10-11T14:57:57Z</dc:date>
    </item>
    <item>
      <title>Re: Excluding names from a Listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Excluding-names-from-a-Listbox/m-p/395071#M569808</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;You're executing a &lt;SPAN style="color: #737373; font-family: Arial; font-size: 12.727272033691406px; background-color: #ffffff;"&gt; Count (CVsSent.CONSULTANT)&lt;/SPAN&gt; against the &lt;STRONG&gt;calculated dimension&lt;/STRONG&gt; that you state above...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That means that this count will be executed for all consultants except Jon,Simon,Andrew.&lt;/P&gt;&lt;P&gt;I guess that the 9th bar is the count for these 3 guys.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can do 2 things...&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;1: add an "others" group&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;You could change the expression so that those 3 names are included in the "others" group. Then use this as your calculated dimension:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; font-size: 12.727272033691406px; color: #737373; font-family: Arial;"&gt;if( &lt;/P&gt;&lt;P style="background-color: #ffffff; font-size: 12.727272033691406px; color: #737373; font-family: Arial;"&gt;CVsSent.CONSULTANT &amp;lt;&amp;gt;'Jon' and&lt;/P&gt;&lt;P style="background-color: #ffffff; font-size: 12.727272033691406px; color: #737373; font-family: Arial;"&gt;CVsSent.CONSULTANT &amp;lt;&amp;gt;'Simon' and&lt;/P&gt;&lt;P style="background-color: #ffffff; font-size: 12.727272033691406px; color: #737373; font-family: Arial;"&gt;CVsSent.CONSULTANT &amp;lt;&amp;gt;'Andrew' ,&lt;/P&gt;&lt;P style="background-color: #ffffff; font-size: 12.727272033691406px; color: #737373; font-family: Arial;"&gt;CVsSent.CONSULTANT&lt;/P&gt;&lt;P style="background-color: #ffffff; font-size: 12.727272033691406px; color: #737373; font-family: Arial;"&gt;//here the else statement...&lt;/P&gt;&lt;P style="background-color: #ffffff; font-size: 12.727272033691406px; color: #737373; font-family: Arial;"&gt;,&lt;/P&gt;&lt;P style="background-color: #ffffff; font-size: 12.727272033691406px; color: #737373; font-family: Arial;"&gt;'Others'&lt;/P&gt;&lt;P style="background-color: #ffffff; font-size: 12.727272033691406px; color: #737373; font-family: Arial;"&gt;)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;2: Hide that 9th bar&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;The 9th bar IMO exists because apparently Jon,Siman and/or Andrew also have cvsSent (so a count for them results in I guess 154). But the dimension is NULL (because of your calculated dimension&lt;/P&gt;&lt;P&gt;On the dimensions tab you could check the checkbox "suppress when value is null"&lt;/P&gt;&lt;P&gt;&amp;gt;&amp;gt;PS: I would double check if the right things are suppressed (should be the cvsSentconsultant for the 3 excluded persons...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2012 15:07:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Excluding-names-from-a-Listbox/m-p/395071#M569808</guid>
      <dc:creator />
      <dc:date>2012-10-11T15:07:23Z</dc:date>
    </item>
    <item>
      <title>Re: Excluding names from a Listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Excluding-names-from-a-Listbox/m-p/395072#M569809</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yep perfect! &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt; now all displaying correctly. do you have an email address i contact you directly on next time i need some help? as i said i'm very new to this and there will be a few things no doubt, as long as you don't mind assisting...?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2012 15:20:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Excluding-names-from-a-Listbox/m-p/395072#M569809</guid>
      <dc:creator />
      <dc:date>2012-10-11T15:20:44Z</dc:date>
    </item>
    <item>
      <title>Re: Excluding names from a Listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Excluding-names-from-a-Listbox/m-p/395073#M569810</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hmz, I didn't plan to put my mailadress here on the forum. My mailbox may then become overloaded with requests (which would perhaps be interesting when I could send invoice for the spent hours &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Lets not do that and keep it to helping eachother on this forum. Then even others can check the proposed solution and add their thoughts and comments.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Happy Qlikviewing!&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2012 15:34:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Excluding-names-from-a-Listbox/m-p/395073#M569810</guid>
      <dc:creator />
      <dc:date>2012-10-11T15:34:34Z</dc:date>
    </item>
    <item>
      <title>Re: Excluding names from a Listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Excluding-names-from-a-Listbox/m-p/395074#M569811</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;lol, i thought that afterwards actually. no worries and thanks for your help to date!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2012 15:36:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Excluding-names-from-a-Listbox/m-p/395074#M569811</guid>
      <dc:creator />
      <dc:date>2012-10-11T15:36:13Z</dc:date>
    </item>
    <item>
      <title>Re: Excluding names from a Listbox</title>
      <link>https://community.qlik.com/t5/QlikView/Excluding-names-from-a-Listbox/m-p/395075#M569812</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No problem. I was just kidding. I'm glad I could help, and am happy for the times that I received help. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bye!&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2012 15:37:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Excluding-names-from-a-Listbox/m-p/395075#M569812</guid>
      <dc:creator />
      <dc:date>2012-10-11T15:37:18Z</dc:date>
    </item>
  </channel>
</rss>

