<?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: Intersection of List box values in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Intersection-of-List-box-values/m-p/374346#M139321</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You want something like this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;='Number of common products: '&amp;amp; Count(distinct {&amp;lt;Product&amp;nbsp; *= p(Product2)&amp;gt;} Product)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The red sign in the expression box is a bug in the syntax checker of the expression box. The expression is ok.&lt;/P&gt;&lt;P&gt;If you want to get rid of the red sign, you can rewrite the expression to e.g.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;='Number of common products: '&amp;amp; Count({&amp;lt;Product&amp;nbsp; =p(Product) * p(Product2)&amp;gt;} Product)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The / or symmetric difference operator works &lt;SPAN style="text-decoration: underline;"&gt;not &lt;/SPAN&gt;like the minus or exclusion operator, from the HELP:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/ Symmetric difference (XOR). This binary operation returns a set consisting of the records that belong to either, but not both of the two set operands. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps,&lt;/P&gt;&lt;P&gt;Stefan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 29 Jun 2012 09:39:50 GMT</pubDate>
    <dc:creator>swuehl</dc:creator>
    <dc:date>2012-06-29T09:39:50Z</dc:date>
    <item>
      <title>Intersection of List box values</title>
      <link>https://community.qlik.com/t5/QlikView/Intersection-of-List-box-values/m-p/374342#M139317</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've a table with the details of Product a company makes..A,B,C,D etc.....&lt;/P&gt;&lt;P&gt;Now in a particular yearmonth the company used to make only Product A &amp;amp; B&lt;/P&gt;&lt;P&gt;&amp;amp; gradually it started making C,D, E etc...&amp;amp; stopped making A etc. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now i want to have two selection boxes for YearMonth- to compare over the two selected periods which are the new products for the latest YearMonth which were not made in the older selected YearMonth.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For this, i've taken a resident load of the YearMonth &amp;amp; Product fields from the main table to create two separate list boxes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now i've YearMonth1 &amp;amp; Products 1 from main table; &amp;amp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; YearMonth 2 &amp;amp; Products 2 from resident table load&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if i make selections in the two YearMonth boxes as desired i get the correct Product list in the Products List boxes&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Problem: &lt;/STRONG&gt;But now i need a list of those products which are present in Product 1 but not in Product 2 &amp;amp; vice-versa also&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i.e intersection of the two list boxes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Plz help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Jun 2012 06:46:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Intersection-of-List-box-values/m-p/374342#M139317</guid>
      <dc:creator />
      <dc:date>2012-06-29T06:46:10Z</dc:date>
    </item>
    <item>
      <title>Re: Intersection of List box values</title>
      <link>https://community.qlik.com/t5/QlikView/Intersection-of-List-box-values/m-p/374343#M139318</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you want stick to your two tables approach, I think you can do it like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For common products, create a straight table chart with dimension Product and expression&lt;/P&gt;&lt;P&gt;&lt;EM&gt;=sum({&amp;lt;Product *= p(Product2)&amp;gt;}1)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For removed products, create a straight table chart with dimension Product and expression&lt;/P&gt;&lt;P&gt;&lt;EM&gt;=sum({&amp;lt;Product /= p(Product2)&amp;gt;}1)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For new products, create a straight table chart with dimension Product2 and expression&lt;/P&gt;&lt;P&gt;&lt;EM&gt;=sum({&amp;lt;Product2 /= p(Product)&amp;gt;}1)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can hide the expression in all tables in presentation tab, so you get a list of the Products only&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See also attached.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Stefan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Jun 2012 08:33:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Intersection-of-List-box-values/m-p/374343#M139318</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2012-06-29T08:33:59Z</dc:date>
    </item>
    <item>
      <title>Re: Intersection of List box values</title>
      <link>https://community.qlik.com/t5/QlikView/Intersection-of-List-box-values/m-p/374344#M139319</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Stefan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i don't have words to say thank you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just a bit more explaination needed&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i think here /= operator works like minus operator,am i correct?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;why do we get a red sign in the expression box whereas the Expression OK is displayed.same for the *= operator&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Jun 2012 09:25:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Intersection-of-List-box-values/m-p/374344#M139319</guid>
      <dc:creator />
      <dc:date>2012-06-29T09:25:01Z</dc:date>
    </item>
    <item>
      <title>Re: Intersection of List box values</title>
      <link>https://community.qlik.com/t5/QlikView/Intersection-of-List-box-values/m-p/374345#M139320</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sir,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;one more thing: can we show these sum expressions(no. of products) as numbers in some text boxes ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Jun 2012 09:29:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Intersection-of-List-box-values/m-p/374345#M139320</guid>
      <dc:creator />
      <dc:date>2012-06-29T09:29:31Z</dc:date>
    </item>
    <item>
      <title>Re: Intersection of List box values</title>
      <link>https://community.qlik.com/t5/QlikView/Intersection-of-List-box-values/m-p/374346#M139321</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You want something like this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;='Number of common products: '&amp;amp; Count(distinct {&amp;lt;Product&amp;nbsp; *= p(Product2)&amp;gt;} Product)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The red sign in the expression box is a bug in the syntax checker of the expression box. The expression is ok.&lt;/P&gt;&lt;P&gt;If you want to get rid of the red sign, you can rewrite the expression to e.g.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;='Number of common products: '&amp;amp; Count({&amp;lt;Product&amp;nbsp; =p(Product) * p(Product2)&amp;gt;} Product)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The / or symmetric difference operator works &lt;SPAN style="text-decoration: underline;"&gt;not &lt;/SPAN&gt;like the minus or exclusion operator, from the HELP:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/ Symmetric difference (XOR). This binary operation returns a set consisting of the records that belong to either, but not both of the two set operands. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps,&lt;/P&gt;&lt;P&gt;Stefan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Jun 2012 09:39:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Intersection-of-List-box-values/m-p/374346#M139321</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2012-06-29T09:39:50Z</dc:date>
    </item>
    <item>
      <title>Re: Intersection of List box values</title>
      <link>https://community.qlik.com/t5/QlikView/Intersection-of-List-box-values/m-p/374347#M139322</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you so much Sir.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Today i've learnt something new in QV...great !!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Jun 2012 09:50:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Intersection-of-List-box-values/m-p/374347#M139322</guid>
      <dc:creator />
      <dc:date>2012-06-29T09:50:05Z</dc:date>
    </item>
    <item>
      <title>Re: Intersection of List box values</title>
      <link>https://community.qlik.com/t5/QlikView/Intersection-of-List-box-values/m-p/374348#M139323</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your welcome.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are using QV11, I think you can also use alternate states instead of the data island table Product2 / Month2.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Jun 2012 10:02:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Intersection-of-List-box-values/m-p/374348#M139323</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2012-06-29T10:02:11Z</dc:date>
    </item>
    <item>
      <title>Re: Intersection of List box values</title>
      <link>https://community.qlik.com/t5/QlikView/Intersection-of-List-box-values/m-p/374349#M139324</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Sir,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again.&lt;/P&gt;&lt;P&gt;Right now i'm using QV 10 only, will upgrade soon to QV 11 then check this out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've one more question:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As i said that the Product is stopped from production, actually once it is produced it can be moved from one category to the other.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me explain:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Right now my selection filters are the Category &amp;amp; Type of the Product where each Category is divided into different Types.&lt;/P&gt;&lt;P&gt;Category X,Y,Z &lt;/P&gt;&lt;P&gt;for Category X we have Type 1,Type 2&lt;/P&gt;&lt;P&gt;for Category Y we have Type 3,Type 4&lt;/P&gt;&lt;P&gt;for Category Z we have Type 5,Type 6&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so when i took the resident load i also took these fields without changing the names so as to create a synthetic key between the two tables &amp;amp; make the result possible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) Now for the New Products(Product1)&amp;nbsp; for YearMonth1 &amp;amp; YearMonth2 selections:&lt;/P&gt;&lt;P&gt; i would like to see in the sheet the Category and Type columns of the New Product in Year Month2. The problem is if i add the Category/Type column directly to the sheet it would obviously show the selections made in the Category/Type list boxes&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) the same needs to be done for the Removed Products (rather Moved Products), i.e. The products which no longer exist in the YearMonth1 for the selctions Category &amp;amp; Type, i need to show the Category &amp;amp; Type for YearMonth1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3) In ur 1st answer u mentioned that: If you want to stick with two table approach, does the single table approach is the QV 11 (AS) approach or it can be done in QV 10 also in a better way than i'm doing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Plz help again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&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>Fri, 29 Jun 2012 10:32:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Intersection-of-List-box-values/m-p/374349#M139324</guid>
      <dc:creator />
      <dc:date>2012-06-29T10:32:44Z</dc:date>
    </item>
    <item>
      <title>Re: Intersection of List box values</title>
      <link>https://community.qlik.com/t5/QlikView/Intersection-of-List-box-values/m-p/374350#M139325</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Could you maybe modify one of my samples to your setting incl. Category and Type and repost it here?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If your tables are linked by Category/Type and you select on these fields, this will also filter the second table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to clear the selection in your chart objects, you can use something like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;='Number of common products: '&amp;amp; Count(distinct {&amp;lt;Product&amp;nbsp; *= p(Product2), &lt;STRONG&gt;Category=, Type=&amp;gt;&lt;/STRONG&gt;} Product)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Not sure if this is what you want.&amp;nbsp; I haven't fully understood what you want to achieve with linked tables, so a small sample incl your expected outcome might help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Stefan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Jun 2012 10:54:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Intersection-of-List-box-values/m-p/374350#M139325</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2012-06-29T10:54:31Z</dc:date>
    </item>
    <item>
      <title>Re: Intersection of List box values</title>
      <link>https://community.qlik.com/t5/QlikView/Intersection-of-List-box-values/m-p/374351#M139326</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Sir,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm posting the application after modifying it with Category/Type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please have a look.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Jun 2012 11:50:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Intersection-of-List-box-values/m-p/374351#M139326</guid>
      <dc:creator />
      <dc:date>2012-06-29T11:50:40Z</dc:date>
    </item>
    <item>
      <title>Re: Intersection of List box values</title>
      <link>https://community.qlik.com/t5/QlikView/Intersection-of-List-box-values/m-p/374352#M139327</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You'll need to define your expected outcome, for example if you select Month = 1, Month2 = 4, Category = X.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What do you want to see in the table?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Jun 2012 12:01:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Intersection-of-List-box-values/m-p/374352#M139327</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2012-06-29T12:01:37Z</dc:date>
    </item>
    <item>
      <title>Re: Intersection of List box values</title>
      <link>https://community.qlik.com/t5/QlikView/Intersection-of-List-box-values/m-p/374353#M139328</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Sir,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please find the file attached.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Jun 2012 12:43:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Intersection-of-List-box-values/m-p/374353#M139328</guid>
      <dc:creator />
      <dc:date>2012-06-29T12:43:28Z</dc:date>
    </item>
    <item>
      <title>Re: Intersection of List box values</title>
      <link>https://community.qlik.com/t5/QlikView/Intersection-of-List-box-values/m-p/374354#M139329</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is a little more tricky, please check attached.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Jun 2012 13:10:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Intersection-of-List-box-values/m-p/374354#M139329</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2012-06-29T13:10:07Z</dc:date>
    </item>
    <item>
      <title>Re: Intersection of List box values</title>
      <link>https://community.qlik.com/t5/QlikView/Intersection-of-List-box-values/m-p/374355#M139330</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Sir,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for you efforts for me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please see the file attached &amp;amp; the remarks over there.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Jun 2012 16:40:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Intersection-of-List-box-values/m-p/374355#M139330</guid>
      <dc:creator />
      <dc:date>2012-06-29T16:40:46Z</dc:date>
    </item>
    <item>
      <title>Re: Intersection of List box values</title>
      <link>https://community.qlik.com/t5/QlikView/Intersection-of-List-box-values/m-p/374356#M139331</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry, I don't get your point in this sample.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a)&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Common products &amp;lt;-&amp;gt; "from the load script these values can be verified"&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a problem here?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;b) &lt;EM&gt;New products (in month) &amp;lt;-&amp;gt; "&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;when 2nd &amp;amp; 3rd expressions are disabled then the Products are correct &amp;amp; as soon as they are enabled it&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;shows all the products having that category &amp;amp; type. (Here) when the expressions are enabled&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;then both B &amp;amp; C are dispalyed (since B also has the same Category &amp;amp; Type as C in Month2) &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;while D is not displayed at all."&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I believe that's not just a cloned object you show here. The 2nd and 3rd expression of your table are missing the if-statement of my original expression, which I introduced to limit the lines shown to the relevant products.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;c) &lt;EM&gt;Removed Products &amp;lt;-&amp;gt; "&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;when 2nd &amp;amp; 3rd expressions are disabled then the Products are correct.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;For this case, A &amp;amp; E are removed from Month 2(sorry i wrote it Month on the sheet title....it is very confusing for me also)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;and from the load script it is evident that A doesn't appear in Month4 which is the maximum Month which means that it is SOLD.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;E's status on Removed Products sheet shows correct Category &amp;amp; Type which is similar to the case in New Products Sheet(IN Month)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;for C's status"&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Again, I don't see an issue here...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Jun 2012 21:44:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Intersection-of-List-box-values/m-p/374356#M139331</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2012-06-29T21:44:14Z</dc:date>
    </item>
    <item>
      <title>Re: Intersection of List box values</title>
      <link>https://community.qlik.com/t5/QlikView/Intersection-of-List-box-values/m-p/374357#M139332</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Sir,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a)&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Common products &amp;lt;-&amp;gt; "from the load script these values can be verified"&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a problem here?&amp;nbsp; &lt;STRONG&gt;No problem,thats OK&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;b) &lt;EM&gt;New products (in month) &amp;lt;-&amp;gt; "&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;when 2nd &amp;amp; 3rd expressions are disabled then the Products are correct &amp;amp; as soon as they are enabled it&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;shows all the products having that category &amp;amp; type. (Here) when the expressions are enabled&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;then both B &amp;amp; C are dispalyed (since B also has the same Category &amp;amp; Type as C in Month2) &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;while D is not displayed at all."&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I believe that's not just a cloned object you show here. The 2nd and 3rd expression of your table are missing the if-statement of my original expression, which I introduced to limit the lines shown to the relevant products.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;When i saw that the result is not correct, i tried removing the if from expr 2 &amp;amp; expr 3 &amp;amp; also disabled expression 1 but the products were still incorrect. After that i just disabled &lt;/STRONG&gt;&lt;STRONG&gt;expr 2 &amp;amp; expr 3&lt;/STRONG&gt;&lt;STRONG&gt; completely (red cross sign) &amp;amp; enabled expr1 Since expr 2 &amp;amp; expr 3 are disabled so it hardly matters that i put an if there again.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;the main thing here is that : The correct New Products are products C &amp;amp; D (shown in the sheet with disabled expr 2 &amp;amp; expr3) while the left most sheet with expr 2 &amp;amp; expr 3 show B &amp;amp; C,of which C is correct but B is wrong &amp;amp; D is not at all shown. It is clearly evident from the inline data that B was not a new product for the current selections(Month=4, Category=Y,Type=Type3) as compared to Month=4,&lt;/STRONG&gt;&lt;STRONG&gt;Category=Y,Type=Type3)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;The primary requirement of the New Products sheet is that the Product column should show the Products which were not there in Month2 but appear in Month1 (Month List box) for the selected Category &amp;amp; Type. (Products C and D here,not B)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;c) &lt;EM&gt;Removed Products &amp;lt;-&amp;gt; "&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;when 2nd &amp;amp; 3rd expressions are disabled then the Products are correct.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;For this case, A &amp;amp; E are removed from Month 2(sorry i wrote it Month on the sheet title....it is very confusing for me also)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;and from the load script it is evident that A doesn't appear in Month4 which is the maximum Month which means that it is SOLD.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;E's status on Removed Products sheet shows correct Category &amp;amp; Type which is similar to the case in New Products Sheet(IN Month)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;for C's status"&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Again, I don't see an issue here...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Same thing here: &lt;/STRONG&gt;&lt;STRONG&gt;The primary requirement of the Removed Products sheet is that the Product column should show the Products which were there in Month2 but not in Month1 (Month List box) for the selected Category &amp;amp; Type. (Products A and E here)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Also, B is shown in both the sheets: New Products and Removed Products. This is not possible as a product can either be New or Removed for a particular selection combination&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Removed&amp;nbsp; means a product which was there in Month2 but not anymore in Month1(Month here) for the selected Category &amp;amp; Type.Such products are A and E but the left sheet shows B &amp;amp; E which is wrong&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;The Category &amp;amp; Type columns of this sheet should show the Category of the Removed Products (A &amp;amp; E) in Month. As A is not present anymore in Month1(Month=4) and also this is the maximum month we can select so both the Category &amp;amp; Type should show SOLD. If there had been a Month=5 or 6 etc... then the removed product should be looked up into the table where&amp;nbsp; Month is maximum and the Category &amp;amp; Type present there should be reported here(in case of E).&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; If the removed product is not there in the maximum possible Month then it should show SOLD for both Category &amp;amp; Type Columns(in case of A)&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;I tried taking a cross join of the two tables INPUT &amp;amp; ISLAND in the original data but due to record abundance it failed. I did this to make all possible combinations of Month &amp;amp; Month2 etc.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Sir, can we change something in the script to make it happen.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Regards&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 30 Jun 2012 02:00:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Intersection-of-List-box-values/m-p/374357#M139332</guid>
      <dc:creator />
      <dc:date>2012-06-30T02:00:21Z</dc:date>
    </item>
    <item>
      <title>Re: Intersection of List box values</title>
      <link>https://community.qlik.com/t5/QlikView/Intersection-of-List-box-values/m-p/374358#M139333</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;qlik_techie,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;that's strange. I do see your requested outcome on my site:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="17367" alt="ProductDiffWorks.png" class="jive-image-thumbnail jive-image" src="https://community.qlik.com/legacyfs/online/17367_ProductDiffWorks.png" width="450" /&gt;&lt;/P&gt;&lt;P&gt;I am using QV11, but I think I haven't used a QV11 only feature. So I checked on latest QV 10 SR5 (released last week), and it seems also ok.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have seen the issues you described on an older version of QV10 (SR3), though.&lt;/P&gt;&lt;P&gt;What version are you using? If not on QV10SR5, could you upgrade to the latest SR or to QV11?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Stefan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 30 Jun 2012 11:25:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Intersection-of-List-box-values/m-p/374358#M139333</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2012-06-30T11:25:23Z</dc:date>
    </item>
    <item>
      <title>Re: Intersection of List box values</title>
      <link>https://community.qlik.com/t5/QlikView/Intersection-of-List-box-values/m-p/374359#M139334</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Sir,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In fact i'm using QV 10 SR3.As you've said...thats why this problem.&lt;/P&gt;&lt;P&gt;Why is there an issue with this version Sir ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you please add the latest qvw file showing NEW &amp;amp; OLD also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm going to try it on QV 11&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyways, the solution is indeed what i was looking for..BRILLIANT....BRILLIANT....BRILLIANT&lt;/P&gt;&lt;P&gt;THANKS........THANKS..........THANKS.........&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 30 Jun 2012 12:46:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Intersection-of-List-box-values/m-p/374359#M139334</guid>
      <dc:creator />
      <dc:date>2012-06-30T12:46:22Z</dc:date>
    </item>
    <item>
      <title>Re: Intersection of List box values</title>
      <link>https://community.qlik.com/t5/QlikView/Intersection-of-List-box-values/m-p/374360#M139335</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That's the version I already attached yesterday 'Compare QUES_2.qvw'. &lt;/P&gt;&lt;P&gt;You should see the correct results when opening in QV10 SR5 or QV 11.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Not sure why there is an issue with older versions. They seem to have fixed it now.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have a nice weekend.&lt;/P&gt;&lt;P&gt;Stefan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 30 Jun 2012 13:17:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Intersection-of-List-box-values/m-p/374360#M139335</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2012-06-30T13:17:36Z</dc:date>
    </item>
    <item>
      <title>Re: Intersection of List box values</title>
      <link>https://community.qlik.com/t5/QlikView/Intersection-of-List-box-values/m-p/374361#M139336</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Sir,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I just installed QV 11 and i can see the correct result.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But between all this, i forgot to ask you the working of the expression:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; if(Common,only({&amp;lt;Product /= p(Product2),Category=,Type=,Month=p(Month2) &amp;gt;} Category))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 30 Jun 2012 13:57:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Intersection-of-List-box-values/m-p/374361#M139336</guid>
      <dc:creator />
      <dc:date>2012-06-30T13:57:34Z</dc:date>
    </item>
  </channel>
</rss>

