<?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 2 QVD Compare in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/2-QVD-Compare/m-p/231738#M83445</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Thanks for your reply.but i need disply that product exists in both the table ..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 27 Apr 2011 12:18:06 GMT</pubDate>
    <dc:creator>srinivasa1</dc:creator>
    <dc:date>2011-04-27T12:18:06Z</dc:date>
    <item>
      <title>2 QVD Compare</title>
      <link>https://community.qlik.com/t5/QlikView/2-QVD-Compare/m-p/231734#M83441</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;I need to compare 2 file eg&lt;/P&gt;&lt;P&gt;FILE A&lt;/P&gt;&lt;P&gt;Sr no Product&lt;/P&gt;&lt;P&gt;1 P1&lt;/P&gt;&lt;P&gt;2 p2&lt;/P&gt;&lt;P&gt;3 p3&lt;/P&gt;&lt;P&gt;and&lt;/P&gt;&lt;P&gt;FILE AB&lt;/P&gt;&lt;P&gt;Sr no Product&lt;/P&gt;&lt;P&gt;1 P1&lt;/P&gt;&lt;P&gt;2 p4&lt;/P&gt;&lt;P&gt;3 p5&lt;/P&gt;&lt;P&gt;in this i wanted know product exists in both the table pls guide me how i can do this comparison.&lt;/P&gt;&lt;P&gt;thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Apr 2011 11:43:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/2-QVD-Compare/m-p/231734#M83441</guid>
      <dc:creator>srinivasa1</dc:creator>
      <dc:date>2011-04-27T11:43:50Z</dc:date>
    </item>
    <item>
      <title>AW:2 QVD Compare</title>
      <link>https://community.qlik.com/t5/QlikView/2-QVD-Compare/m-p/231735#M83442</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;best way would be an inner join:&lt;/P&gt;&lt;P&gt;Data:&lt;BR /&gt;Load * From TableA;&lt;/P&gt;&lt;P&gt;Inner Join (Data)&lt;BR /&gt;Load * Fraom TableB;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Apr 2011 11:49:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/2-QVD-Compare/m-p/231735#M83442</guid>
      <dc:creator>brenner_martina</dc:creator>
      <dc:date>2011-04-27T11:49:57Z</dc:date>
    </item>
    <item>
      <title>2 QVD Compare</title>
      <link>https://community.qlik.com/t5/QlikView/2-QVD-Compare/m-p/231736#M83443</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;Assuming that the key field is "Product", then you can do something like the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;FileAB:NOCONCATENATE LOAD "Sr no" AS "Sr no AB", Product AS "Product AB", If(Exists(Product), 1, 0) AS ProductExistsInFileAFROM Source;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;Hope that helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Apr 2011 11:49:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/2-QVD-Compare/m-p/231736#M83443</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2011-04-27T11:49:57Z</dc:date>
    </item>
    <item>
      <title>2 QVD Compare</title>
      <link>https://community.qlik.com/t5/QlikView/2-QVD-Compare/m-p/231737#M83444</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;just load and join these tweo tables:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;LOAD [Sr no], [Product] FROM FILE_A.qvd (qvd);&lt;BR /&gt;INNER JOIN LOAD [Sr no], [Product] FROM FILE_AB.qvd (qvd);&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;- Ralf&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Apr 2011 11:51:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/2-QVD-Compare/m-p/231737#M83444</guid>
      <dc:creator>rbecher</dc:creator>
      <dc:date>2011-04-27T11:51:46Z</dc:date>
    </item>
    <item>
      <title>2 QVD Compare</title>
      <link>https://community.qlik.com/t5/QlikView/2-QVD-Compare/m-p/231738#M83445</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Thanks for your reply.but i need disply that product exists in both the table ..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Apr 2011 12:18:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/2-QVD-Compare/m-p/231738#M83445</guid>
      <dc:creator>srinivasa1</dc:creator>
      <dc:date>2011-04-27T12:18:06Z</dc:date>
    </item>
    <item>
      <title>2 QVD Compare</title>
      <link>https://community.qlik.com/t5/QlikView/2-QVD-Compare/m-p/231739#M83446</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Thanks for your reply.but i need disply that product exists in both the table ..i think inner join will dispy only matching recods in both the table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Apr 2011 12:19:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/2-QVD-Compare/m-p/231739#M83446</guid>
      <dc:creator>srinivasa1</dc:creator>
      <dc:date>2011-04-27T12:19:37Z</dc:date>
    </item>
    <item>
      <title>SV:Re: 2 QVD Compare</title>
      <link>https://community.qlik.com/t5/QlikView/2-QVD-Compare/m-p/231740#M83447</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Add a GROUP BY to to load and you can group the result by Product, and thereby only get one row per product&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Apr 2011 12:40:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/2-QVD-Compare/m-p/231740#M83447</guid>
      <dc:creator>ToniKautto</dc:creator>
      <dc:date>2011-04-27T12:40:17Z</dc:date>
    </item>
    <item>
      <title>AW:Re: 2 QVD Compare</title>
      <link>https://community.qlik.com/t5/QlikView/2-QVD-Compare/m-p/231741#M83448</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;but you can load all three tables, TableA, TableB and the inner join of both tables!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Apr 2011 12:45:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/2-QVD-Compare/m-p/231741#M83448</guid>
      <dc:creator>brenner_martina</dc:creator>
      <dc:date>2011-04-27T12:45:01Z</dc:date>
    </item>
    <item>
      <title>AW:Re: 2 QVD Compare</title>
      <link>https://community.qlik.com/t5/QlikView/2-QVD-Compare/m-p/231742#M83449</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi thanks for your reply.i written code as bellow&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;BR /&gt;&lt;BR /&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;&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;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&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;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A:&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;LOAD&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Srno&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;,&lt;/P&gt;&lt;P&gt;Product&lt;/P&gt;&lt;P&gt;//Product as Key_Product&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;QvdCompare.xlsx&lt;/P&gt;&lt;P&gt;(&lt;/P&gt;&lt;P&gt;&lt;/P&gt;ooxml, embedded labels &lt;P&gt;) ;&lt;/P&gt;&lt;P&gt;Join&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;LOAD&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Srno&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;,&lt;/P&gt;&lt;P&gt;Product&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//Product as Key_Product&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;QvdCompare2.xlsx&lt;/P&gt;&lt;P&gt;(&lt;/P&gt;&lt;P&gt;&lt;/P&gt;ooxml, embedded labels &lt;P&gt;);&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;store&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;A into &lt;P&gt;A.qvd;&lt;/P&gt;&lt;P&gt;FileAB:&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;NOCONCATENATE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;B&gt;LOAD&lt;/B&gt; Srno AS "Sr no AB" &lt;P&gt;,&lt;/P&gt;&lt;P&gt;Product&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;AS "Product AB" &lt;P&gt;,&lt;/P&gt;&lt;P&gt;If&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;(Exists(Product), 1, 0) AS &lt;P&gt;ProductExistsInFileA&lt;/P&gt;&lt;P&gt;from&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A.qvd&lt;/P&gt;&lt;P&gt;(&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;/P&gt;qvd &lt;P&gt;);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where i need to use group by if i want show value existed in both the table.&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Apr 2011 12:58:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/2-QVD-Compare/m-p/231742#M83449</guid>
      <dc:creator>srinivasa1</dc:creator>
      <dc:date>2011-04-27T12:58:08Z</dc:date>
    </item>
    <item>
      <title>AW:Re: 2 QVD Compare</title>
      <link>https://community.qlik.com/t5/QlikView/2-QVD-Compare/m-p/231743#M83450</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi thanks for your reply.i written code as bellow&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&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;&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;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&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;&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;A:&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P style="font-weight: bold"&gt;&lt;/P&gt;&lt;P style="font-weight: bold"&gt;LOAD&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&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;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Srno&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&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;Product&lt;/P&gt;&lt;P&gt;//Product as Key_Product&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;QvdCompare.xlsx&lt;/P&gt;&lt;P&gt;(&lt;/P&gt;&lt;P&gt;&lt;/P&gt;ooxml, embedded labels&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;) ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Join&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;LOAD&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Srno&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;/P&gt;&lt;P&gt;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Product&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&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;//Product as Key_Product&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;QvdCompare2.xlsx&lt;/P&gt;&lt;P&gt;(&lt;/P&gt;&lt;P&gt;&lt;/P&gt;ooxml, embedded labels&lt;BR /&gt;&lt;BR /&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;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: bold"&gt;&lt;/P&gt;&lt;P style="font-weight: bold"&gt;store&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;A into&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;A.qvd;&lt;/P&gt;&lt;P&gt;FileAB:&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NOCONCATENATE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;B&gt;LOAD&lt;/B&gt; Srno AS "Sr no AB"&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Product&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;AS "Product AB"&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;(Exists(Product), 1, 0) AS &lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;ProductExistsInFileA&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;from&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;/P&gt;&lt;P&gt;A.qvd&lt;/P&gt;&lt;P&gt;(&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;/P&gt;&lt;P&gt;qvd&lt;/P&gt;&lt;P&gt;);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where i need to use join if i want show value existed in both the table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Apr 2011 12:59:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/2-QVD-Compare/m-p/231743#M83450</guid>
      <dc:creator>srinivasa1</dc:creator>
      <dc:date>2011-04-27T12:59:05Z</dc:date>
    </item>
    <item>
      <title>AW:Re: 2 QVD Compare</title>
      <link>https://community.qlik.com/t5/QlikView/2-QVD-Compare/m-p/231744#M83451</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You want to join 2 files and make flag for show existing products right?&lt;/P&gt;&lt;P&gt;So maybe your if() should be like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;if(count(product)&amp;lt;=2, 1, 0)&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;if(understanding&amp;lt;&amp;gt;true, Sorry) ^^&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Apr 2011 13:27:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/2-QVD-Compare/m-p/231744#M83451</guid>
      <dc:creator />
      <dc:date>2011-04-27T13:27:30Z</dc:date>
    </item>
    <item>
      <title>AW:Re: 2 QVD Compare</title>
      <link>https://community.qlik.com/t5/QlikView/2-QVD-Compare/m-p/231745#M83452</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks for reply but its not sloved my issue.[:'(]&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Apr 2011 13:36:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/2-QVD-Compare/m-p/231745#M83452</guid>
      <dc:creator>srinivasa1</dc:creator>
      <dc:date>2011-04-27T13:36:45Z</dc:date>
    </item>
    <item>
      <title>AW:Re: 2 QVD Compare</title>
      <link>https://community.qlik.com/t5/QlikView/2-QVD-Compare/m-p/231746#M83453</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;According to your script now you have a field "ProductExistsInFileA" that stores 1 when the product exists and zero when it doesn't. So if you want to use that in an expression, Sum the number of "1"s in the table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;Sum(ProductExistsInFileA)&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;or just create a listbox for that field and select "1" to see only those that already exist.&lt;/P&gt;&lt;P&gt;Is that what you want?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Apr 2011 13:42:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/2-QVD-Compare/m-p/231746#M83453</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2011-04-27T13:42:12Z</dc:date>
    </item>
    <item>
      <title>AW:Re: 2 QVD Compare</title>
      <link>https://community.qlik.com/t5/QlikView/2-QVD-Compare/m-p/231747#M83454</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't know what your problem is. If you want to show if product is in two tables you can use the inner join to get a resulting table with all products that are in both tables. You can show this..&lt;/P&gt;&lt;P&gt;The second solution would be a concatenated load with a count aggregation as described above.&lt;/P&gt;&lt;P&gt;If this is not sufficient you should give us more details about your demand.&lt;/P&gt;&lt;P&gt;- Ralf&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Apr 2011 13:46:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/2-QVD-Compare/m-p/231747#M83454</guid>
      <dc:creator>rbecher</dc:creator>
      <dc:date>2011-04-27T13:46:08Z</dc:date>
    </item>
    <item>
      <title>AW:Re: 2 QVD Compare</title>
      <link>https://community.qlik.com/t5/QlikView/2-QVD-Compare/m-p/231748#M83455</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;so this means i understand it wrong?&lt;/P&gt;&lt;P style="margin:0px;"&gt;previous script was wrong. if(count(product)&amp;lt;1, 1, 0) as flag&lt;BR /&gt;&lt;BR /&gt;or you want load 2 excel file and make table for only existing products? If is it right then just use inner join.&lt;BR /&gt;&lt;BR /&gt;BTW almost always Miguel's right. follow him ^^&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Apr 2011 13:50:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/2-QVD-Compare/m-p/231748#M83455</guid>
      <dc:creator />
      <dc:date>2011-04-27T13:50:01Z</dc:date>
    </item>
    <item>
      <title>AW:2 QVD Compare</title>
      <link>https://community.qlik.com/t5/QlikView/2-QVD-Compare/m-p/231749#M83456</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;look at the attached file!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Apr 2011 14:27:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/2-QVD-Compare/m-p/231749#M83456</guid>
      <dc:creator>brenner_martina</dc:creator>
      <dc:date>2011-04-27T14:27:03Z</dc:date>
    </item>
    <item>
      <title>AW:Re: 2 QVD Compare</title>
      <link>https://community.qlik.com/t5/QlikView/2-QVD-Compare/m-p/231750#M83457</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Thanks for your reply.i have two file as bellow&lt;/P&gt;&lt;P&gt;FILE A&lt;/P&gt;&lt;P&gt;Sr no Product&lt;/P&gt;&lt;P&gt;1 P1&lt;/P&gt;&lt;P&gt;2 p2&lt;/P&gt;&lt;P&gt;3 p3&lt;/P&gt;&lt;P&gt;and&lt;/P&gt;&lt;P&gt;FILE AB&lt;/P&gt;&lt;P&gt;Sr no Product&lt;/P&gt;&lt;P&gt;1 P1&lt;/P&gt;&lt;P&gt;2 p4&lt;/P&gt;&lt;P&gt;3 p5&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;after compare i need to disply product p1 as its existed in both the table pls help me&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Apr 2011 07:41:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/2-QVD-Compare/m-p/231750#M83457</guid>
      <dc:creator>srinivasa1</dc:creator>
      <dc:date>2011-04-28T07:41:52Z</dc:date>
    </item>
    <item>
      <title>AW:Re: 2 QVD Compare</title>
      <link>https://community.qlik.com/t5/QlikView/2-QVD-Compare/m-p/231751#M83458</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Thanks for your reply.i have two file as bellow&lt;/P&gt;&lt;P&gt;FILE A&lt;/P&gt;&lt;P&gt;Sr no Product&lt;/P&gt;&lt;P&gt;1 P1&lt;/P&gt;&lt;P&gt;2 p2&lt;/P&gt;&lt;P&gt;3 p3&lt;/P&gt;&lt;P&gt;and&lt;/P&gt;&lt;P&gt;FILE AB&lt;/P&gt;&lt;P&gt;Sr no Product&lt;/P&gt;&lt;P&gt;1 P1&lt;/P&gt;&lt;P&gt;2 p4&lt;/P&gt;&lt;P&gt;3 p5&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;after compare i need to disply product p1 as its in both the table pls help me&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Apr 2011 07:43:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/2-QVD-Compare/m-p/231751#M83458</guid>
      <dc:creator>srinivasa1</dc:creator>
      <dc:date>2011-04-28T07:43:45Z</dc:date>
    </item>
    <item>
      <title>AW:2 QVD Compare</title>
      <link>https://community.qlik.com/t5/QlikView/2-QVD-Compare/m-p/231752#M83459</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have entered a new field in the script: Marker, of course you can also use a flag like 1 As Flag:&lt;/P&gt;&lt;P&gt;TableC:&lt;BR /&gt;NoConcatenate&lt;BR /&gt;Load "Sr no A" As SRNoAB,&lt;BR /&gt; &lt;STRONG&gt;'Product in both tables' As Marker,&lt;/STRONG&gt;&lt;BR /&gt; Product&lt;BR /&gt;Resident TableA;&lt;/P&gt;&lt;P&gt;Inner Join (TableC)&lt;BR /&gt;Load "Sr no B" As SRNoAB,&lt;BR /&gt; &lt;STRONG&gt;'Product in both tables' As Marker,&lt;/STRONG&gt;&lt;BR /&gt; Product&lt;BR /&gt;Resident TableB;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Apr 2011 07:52:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/2-QVD-Compare/m-p/231752#M83459</guid>
      <dc:creator>brenner_martina</dc:creator>
      <dc:date>2011-04-28T07:52:45Z</dc:date>
    </item>
    <item>
      <title>AW:2 QVD Compare</title>
      <link>https://community.qlik.com/t5/QlikView/2-QVD-Compare/m-p/231753#M83460</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi thanks for your reply. im stii little confuse how i can use ur script in my bellow script&lt;/P&gt;&lt;P&gt;TableA:&lt;BR /&gt;LOAD&lt;BR /&gt;Srno ,&lt;BR /&gt; Product&lt;/P&gt;&lt;P&gt;FROM&lt;BR /&gt;QvdCompare.xlsx&lt;BR /&gt;(ooxml, embedded labels) ;&lt;BR /&gt; TableB:&lt;BR /&gt;LOAD&lt;BR /&gt;Srno ,&lt;BR /&gt; Product&lt;BR /&gt;FROM&lt;BR /&gt;QvdCompare2.xlsx&lt;BR /&gt;(ooxml, embedded labels);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can any one pls guide me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&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;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&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;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Apr 2011 08:11:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/2-QVD-Compare/m-p/231753#M83460</guid>
      <dc:creator>srinivasa1</dc:creator>
      <dc:date>2011-04-28T08:11:47Z</dc:date>
    </item>
  </channel>
</rss>

