<?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 expression set analysis? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/List-box-expression-set-analysis/m-p/517569#M557198</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Kristan, sorry for the delayed response. let me confirm what you are asking - instead of showing 1 field in a list box (ie. USA), you want to be able to show 3 (ie. USA, CA, SA)? and then you want to be able to toggle back and forth based on which of the 3 you want to see?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 30 Jun 2015 15:05:21 GMT</pubDate>
    <dc:creator />
    <dc:date>2015-06-30T15:05:21Z</dc:date>
    <item>
      <title>List box expression set analysis?</title>
      <link>https://community.qlik.com/t5/QlikView/List-box-expression-set-analysis/m-p/517563#M557192</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My data model has a table in it.&amp;nbsp; My user is only interested in a certain subset of that table's data (WHERE FieldA = 'XYZ').&amp;nbsp; Originally, I handled this in the script by adding another table by doing a resident load of the table with FieldA = 'XYZ' in the WHERE clause.&amp;nbsp; This works, but I it would be better to not have an extra table in the data model, and instead use set analysis.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This works great for charts, but I'm having issues with list boxes.&amp;nbsp; I want the list box to only contain values where FieldA = 'XYZ'.&amp;nbsp; I can build an expression for the list box, and do something like =Only({&amp;lt;FieldA = {'XYZ'}&amp;gt;} ListBoxField), but Only isn't the right command.&amp;nbsp; I also don't think you can show frequencies for expressions.. but I'd be happy even just to get the possible selections.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How am I supposed to do this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Jun 2013 14:26:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/List-box-expression-set-analysis/m-p/517563#M557192</guid>
      <dc:creator />
      <dc:date>2013-06-27T14:26:14Z</dc:date>
    </item>
    <item>
      <title>Re: List box expression set analysis?</title>
      <link>https://community.qlik.com/t5/QlikView/List-box-expression-set-analysis/m-p/517564#M557193</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try an If Statement in the expression instead...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a tab for example where i only want to see data involved with Canada, so in my listbox of countries, i created an if statement within the expression field which now only shows Canada.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;if&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Country Name]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; ='Canada'&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Country Name]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;) &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;you can add as many fields as you need with 'or' and 'and' functions.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;hope this helps.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Jun 2013 14:35:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/List-box-expression-set-analysis/m-p/517564#M557193</guid>
      <dc:creator />
      <dc:date>2013-06-27T14:35:52Z</dc:date>
    </item>
    <item>
      <title>Re: List box expression set analysis?</title>
      <link>https://community.qlik.com/t5/QlikView/List-box-expression-set-analysis/m-p/517565#M557194</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Actually.. yeah, that works, and it's easier than telling business users to use set analysis.&amp;nbsp; I can display counts another way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Jun 2013 14:43:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/List-box-expression-set-analysis/m-p/517565#M557194</guid>
      <dc:creator />
      <dc:date>2013-06-27T14:43:17Z</dc:date>
    </item>
    <item>
      <title>Re: List box expression set analysis?</title>
      <link>https://community.qlik.com/t5/QlikView/List-box-expression-set-analysis/m-p/517566#M557195</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;no problem! &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Jun 2013 14:46:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/List-box-expression-set-analysis/m-p/517566#M557195</guid>
      <dc:creator />
      <dc:date>2013-06-27T14:46:49Z</dc:date>
    </item>
    <item>
      <title>Re: List box expression set analysis?</title>
      <link>https://community.qlik.com/t5/QlikView/List-box-expression-set-analysis/m-p/517567#M557196</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;when i went to reply to your new thread it said it no longer existed... O_o&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Jun 2013 15:14:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/List-box-expression-set-analysis/m-p/517567#M557196</guid>
      <dc:creator />
      <dc:date>2013-06-27T15:14:10Z</dc:date>
    </item>
    <item>
      <title>Re: List box expression set analysis?</title>
      <link>https://community.qlik.com/t5/QlikView/List-box-expression-set-analysis/m-p/517568#M557197</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Parrish,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; I have a list box where I want to use this same set analysis, but I have "A_...", "B_...", and "C_..."&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suppose I want to filter so that only those fields with "C_" are visible.&amp;nbsp; How would I modify your suggestion to work in my case?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards, &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jun 2015 21:40:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/List-box-expression-set-analysis/m-p/517568#M557197</guid>
      <dc:creator>gshockxcc</dc:creator>
      <dc:date>2015-06-25T21:40:57Z</dc:date>
    </item>
    <item>
      <title>Re: List box expression set analysis?</title>
      <link>https://community.qlik.com/t5/QlikView/List-box-expression-set-analysis/m-p/517569#M557198</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Kristan, sorry for the delayed response. let me confirm what you are asking - instead of showing 1 field in a list box (ie. USA), you want to be able to show 3 (ie. USA, CA, SA)? and then you want to be able to toggle back and forth based on which of the 3 you want to see?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Jun 2015 15:05:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/List-box-expression-set-analysis/m-p/517569#M557198</guid>
      <dc:creator />
      <dc:date>2015-06-30T15:05:21Z</dc:date>
    </item>
    <item>
      <title>Re: List box expression set analysis?</title>
      <link>https://community.qlik.com/t5/QlikView/List-box-expression-set-analysis/m-p/517570#M557201</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i think that is what you are asking &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;that being said, this is how i would write an expression to show 2 or more values instead of just 1:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;if&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Country Name]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; ='Canada'&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, or &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Country Name]='USA' or &lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Country Name]='South America', &lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Country Name]&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;) &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;then all 3 of those countries would show up in my list box and if i just wanted to see USA, i would just click it and my data would drill down to only show USA.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;Hope this helps!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;Parrish&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Jun 2015 15:15:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/List-box-expression-set-analysis/m-p/517570#M557201</guid>
      <dc:creator />
      <dc:date>2015-06-30T15:15:29Z</dc:date>
    </item>
    <item>
      <title>Re: List box expression set analysis?</title>
      <link>https://community.qlik.com/t5/QlikView/List-box-expression-set-analysis/m-p/517571#M557203</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Parrish,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Thanks for getting back to me.&amp;nbsp; I didn't envision implementing it as you have described, but essentially, that's what I am looking to do.&amp;nbsp; Once I have developed the functionality in a list box, my goal is to move this to the script where it checks to see if these fields are present or not, and removes them where appropriate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks much.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jul 2015 13:44:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/List-box-expression-set-analysis/m-p/517571#M557203</guid>
      <dc:creator>gshockxcc</dc:creator>
      <dc:date>2015-07-01T13:44:21Z</dc:date>
    </item>
    <item>
      <title>Re: List box expression set analysis?</title>
      <link>https://community.qlik.com/t5/QlikView/List-box-expression-set-analysis/m-p/517572#M557204</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Kristan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So essentially, you could do the exact same thing in the script - depending on which data source houses A, B and C, you could write something like this in the script: When you use a 'Where Statement' in the script, you can filter the data during the load instead of having QlikView do this in the design view.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;TABLE NAME:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;LOAD&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;MATERIAL_NUMBER&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;as&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;MATERIAL&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;MaterialDesc&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;as&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;DESCRIPTION&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Brand&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;as&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;BRAND&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;FROM&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt;[\\NETWORK\QLIKVIEW\FILES\QVD\MATERIAL.qvd]&lt;BR /&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;qvd&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;)&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Where &lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; Brand = 'A' or Brand = 'B' or Brand = 'C';&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jul 2015 14:33:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/List-box-expression-set-analysis/m-p/517572#M557204</guid>
      <dc:creator />
      <dc:date>2015-07-01T14:33:59Z</dc:date>
    </item>
    <item>
      <title>Re: List box expression set analysis?</title>
      <link>https://community.qlik.com/t5/QlikView/List-box-expression-set-analysis/m-p/517573#M557205</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #0000ff;"&gt;if&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #800000;"&gt;[Country Name]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt; ='&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #800000;"&gt;canada&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d;"&gt;'&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;, &lt;SPAN style="color: #800000; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 10.6666669845581px;"&gt;or &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #800000;"&gt;[Country Name]='USA' or &lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 8pt; font-family: inherit;"&gt;[Country Name]='South America', &lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 8pt; font-family: inherit;"&gt;[Country Name]&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jul 2015 16:06:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/List-box-expression-set-analysis/m-p/517573#M557205</guid>
      <dc:creator>pratap6699</dc:creator>
      <dc:date>2015-07-01T16:06:02Z</dc:date>
    </item>
  </channel>
</rss>

