<?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 Condition on QVD joins in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Condition-on-QVD-joins/m-p/937807#M982405</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;Hi,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a scenario where I don't want to display rows for specific data values of a fields in QVD's.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex: A.qvd is having fields x,y,z;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; B.qvd is having fields x,s,t;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to avoid values y='USA' and&amp;nbsp; s='SAMSUNG' after applying inner join on two QVD's, but want all the other values to display which falls in fields 'y' &amp;amp; 's'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 17 Aug 2015 19:48:48 GMT</pubDate>
    <dc:creator />
    <dc:date>2015-08-17T19:48:48Z</dc:date>
    <item>
      <title>Condition on QVD joins</title>
      <link>https://community.qlik.com/t5/QlikView/Condition-on-QVD-joins/m-p/937807#M982405</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;Hi,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a scenario where I don't want to display rows for specific data values of a fields in QVD's.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex: A.qvd is having fields x,y,z;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; B.qvd is having fields x,s,t;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to avoid values y='USA' and&amp;nbsp; s='SAMSUNG' after applying inner join on two QVD's, but want all the other values to display which falls in fields 'y' &amp;amp; 's'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Aug 2015 19:48:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Condition-on-QVD-joins/m-p/937807#M982405</guid>
      <dc:creator />
      <dc:date>2015-08-17T19:48:48Z</dc:date>
    </item>
    <item>
      <title>Re: Condition on QVD joins</title>
      <link>https://community.qlik.com/t5/QlikView/Condition-on-QVD-joins/m-p/937808#M982407</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;load *&lt;/P&gt;&lt;P&gt;from A.qvd&lt;/P&gt;&lt;P&gt;where y &amp;lt;&amp;gt; 'USA';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;inner join&lt;/P&gt;&lt;P&gt;load *&lt;/P&gt;&lt;P&gt;from B.qvd&lt;/P&gt;&lt;P&gt;where s &amp;lt;&amp;gt; 'Samsung';&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Aug 2015 20:41:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Condition-on-QVD-joins/m-p/937808#M982407</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-08-17T20:41:48Z</dc:date>
    </item>
    <item>
      <title>Re: Condition on QVD joins</title>
      <link>https://community.qlik.com/t5/QlikView/Condition-on-QVD-joins/m-p/937809#M982409</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can try below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data:&lt;/P&gt;&lt;P&gt;LOAD X,Y,X From A.qvd Where not Match(Y,'USA') ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Inner Join (Data)&lt;/P&gt;&lt;P&gt;LOAD X,S,T From B.qvd Where not Match(S,'Samsung');&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Aug 2015 00:42:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Condition-on-QVD-joins/m-p/937809#M982409</guid>
      <dc:creator />
      <dc:date>2015-08-18T00:42:00Z</dc:date>
    </item>
    <item>
      <title>Re: Condition on QVD joins</title>
      <link>https://community.qlik.com/t5/QlikView/Condition-on-QVD-joins/m-p/937810#M982410</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;How to avoid values y='USA' and&amp;nbsp; s='SAMSUNG' &lt;STRONG&gt;after applying inner join&lt;/STRONG&gt; on two QVD's, but want all the other values to display which falls in fields 'y' &amp;amp; 's'.&lt;/P&gt;
&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;May be this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;Table:&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;LOAD x,y,z From A.qvd&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;Inner Join (Table)&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;LOAD x,s,t From B.qvd ;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;NewTable:&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;NoConcatenate&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;LOAD *&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;Resident Table&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Where not Match(y,'USA') and &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;not Match(s,'Samsung');&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style=": ; color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;STRONG&gt;DROP Table Table;&lt;/STRONG&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Aug 2015 01:35:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Condition-on-QVD-joins/m-p/937810#M982410</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-08-18T01:35:44Z</dc:date>
    </item>
    <item>
      <title>Re: Condition on QVD joins</title>
      <link>https://community.qlik.com/t5/QlikView/Condition-on-QVD-joins/m-p/937811#M982411</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Please try below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;Table_Data:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;LOAD x,y,z From A.qvd Where not Match(y,'USA') ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;Inner Join (Data)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;LOAD x,s,t From B.qvd Where not Match(s,'Samsung');&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Aug 2015 01:41:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Condition-on-QVD-joins/m-p/937811#M982411</guid>
      <dc:creator>qlikviewwizard</dc:creator>
      <dc:date>2015-08-18T01:41:31Z</dc:date>
    </item>
  </channel>
</rss>

