<?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: where not in but with qvd files in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/where-not-in-but-with-qvd-files/m-p/699446#M252519</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Great to hear&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 26 Sep 2014 00:04:54 GMT</pubDate>
    <dc:creator>JonnyPoole</dc:creator>
    <dc:date>2014-09-26T00:04:54Z</dc:date>
    <item>
      <title>where not in but with qvd files</title>
      <link>https://community.qlik.com/t5/QlikView/where-not-in-but-with-qvd-files/m-p/699442#M252515</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi I am relatively new to Qlikview and coming from an SqlServer BI background. I am loading data into an document but now i need to filter out some data during the load, basically want all data from one table that is not in the other table. With sql I could do something like this:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;SELECT AccountId, &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;Email,&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;Id&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;FROM Contact&lt;/P&gt;&lt;P&gt;where Id not in&lt;/P&gt;&lt;P&gt;(SELECT ContactId&lt;/P&gt;&lt;P&gt;FROM CampaignMember)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But now I have these two qvd files contact.qvd and campaignmember.qvd. So into the document I want to load all the data from contact that does have its ContactId in campaignmember.qvd .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could anyone help me with this ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Birkir&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Sep 2014 19:56:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/where-not-in-but-with-qvd-files/m-p/699442#M252515</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-09-25T19:56:37Z</dc:date>
    </item>
    <item>
      <title>Re: where not in but with qvd files</title>
      <link>https://community.qlik.com/t5/QlikView/where-not-in-but-with-qvd-files/m-p/699443#M252516</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;look to "where not exists" in the QV help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Sep 2014 20:02:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/where-not-in-but-with-qvd-files/m-p/699443#M252516</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-09-25T20:02:59Z</dc:date>
    </item>
    <item>
      <title>Re: where not in but with qvd files</title>
      <link>https://community.qlik.com/t5/QlikView/where-not-in-but-with-qvd-files/m-p/699444#M252517</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use the 'exists' function.&amp;nbsp; So first load the contacts from campaign members. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then load the contacts where Id does not exist in the ContactId field from the pre-loaded campaign member table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;load&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ContactId&lt;/P&gt;&lt;P&gt;from &amp;lt;Campaignmember source&amp;gt; ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AccountId,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Email,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Id&lt;/P&gt;&lt;P&gt;from &amp;lt;Contactsource&amp;gt;&lt;/P&gt;&lt;P&gt;where not exists(ContactId,Id) ;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Sep 2014 20:04:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/where-not-in-but-with-qvd-files/m-p/699444#M252517</guid>
      <dc:creator>JonnyPoole</dc:creator>
      <dc:date>2014-09-25T20:04:43Z</dc:date>
    </item>
    <item>
      <title>Re: where not in but with qvd files</title>
      <link>https://community.qlik.com/t5/QlikView/where-not-in-but-with-qvd-files/m-p/699445#M252518</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;Jonathan thank you so much for your help. This worked exactly as planned. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Birkir&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Sep 2014 21:52:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/where-not-in-but-with-qvd-files/m-p/699445#M252518</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-09-25T21:52:01Z</dc:date>
    </item>
    <item>
      <title>Re: where not in but with qvd files</title>
      <link>https://community.qlik.com/t5/QlikView/where-not-in-but-with-qvd-files/m-p/699446#M252519</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Great to hear&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Sep 2014 00:04:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/where-not-in-but-with-qvd-files/m-p/699446#M252519</guid>
      <dc:creator>JonnyPoole</dc:creator>
      <dc:date>2014-09-26T00:04:54Z</dc:date>
    </item>
  </channel>
</rss>

