<?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 Where Exists in Another Table in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Where-Exists-in-Another-Table/m-p/990350#M337487</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In my load, I am loading TASK_ID (among other things) from a source called APP_MS and another TASK_ID (among other things) from a source called DM_STAT_TASK. I want to write the equivalent of loading TASK_ID from DM_STAT_TASK where TASK_ID exists in APP_MS. What would the syntax be?&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, 15 Oct 2015 19:45:48 GMT</pubDate>
    <dc:creator>cbaqir</dc:creator>
    <dc:date>2015-10-15T19:45:48Z</dc:date>
    <item>
      <title>Where Exists in Another Table</title>
      <link>https://community.qlik.com/t5/QlikView/Where-Exists-in-Another-Table/m-p/990350#M337487</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In my load, I am loading TASK_ID (among other things) from a source called APP_MS and another TASK_ID (among other things) from a source called DM_STAT_TASK. I want to write the equivalent of loading TASK_ID from DM_STAT_TASK where TASK_ID exists in APP_MS. What would the syntax be?&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, 15 Oct 2015 19:45:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Where-Exists-in-Another-Table/m-p/990350#M337487</guid>
      <dc:creator>cbaqir</dc:creator>
      <dc:date>2015-10-15T19:45:48Z</dc:date>
    </item>
    <item>
      <title>Re: Where Exists in Another Table</title>
      <link>https://community.qlik.com/t5/QlikView/Where-Exists-in-Another-Table/m-p/990351#M337488</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just so I understand, if you want to load table APP_MS and DM_STAT_TASK but only keep the TaskID values where they occur in APP_MS, then you just do a Left Join.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;TaskID&lt;/P&gt;&lt;P&gt;APP_MS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Left Join(APP_MS)&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;TaskID&lt;/P&gt;&lt;P&gt;DM_STAT_TASK&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Oct 2015 19:48:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Where-Exists-in-Another-Table/m-p/990351#M337488</guid>
      <dc:creator>crystles</dc:creator>
      <dc:date>2015-10-15T19:48:36Z</dc:date>
    </item>
    <item>
      <title>Re: Where Exists in Another Table</title>
      <link>https://community.qlik.com/t5/QlikView/Where-Exists-in-Another-Table/m-p/990352#M337489</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need load firt APPS_MS...after you need put where existes , for example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;DM_STAT_TASK&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;LOAD * &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;FROM &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;DM_STAT_TASK&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;WHERE &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; EXISTS(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;TASK_ID,&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;TASK_ID&lt;/SPAN&gt;&lt;/SPAN&gt;);&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Oct 2015 19:49:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Where-Exists-in-Another-Table/m-p/990352#M337489</guid>
      <dc:creator />
      <dc:date>2015-10-15T19:49:04Z</dc:date>
    </item>
    <item>
      <title>Re: Where Exists in Another Table</title>
      <link>https://community.qlik.com/t5/QlikView/Where-Exists-in-Another-Table/m-p/990353#M337490</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe with something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Where Exists (TASK_ID)&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Oct 2015 19:50:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Where-Exists-in-Another-Table/m-p/990353#M337490</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-10-15T19:50:00Z</dc:date>
    </item>
    <item>
      <title>Re: Where Exists in Another Table</title>
      <link>https://community.qlik.com/t5/QlikView/Where-Exists-in-Another-Table/m-p/990354#M337491</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That is correct. I was doing a left join but wasn't indicating the table name. I will try it now, thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Oct 2015 19:52:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Where-Exists-in-Another-Table/m-p/990354#M337491</guid>
      <dc:creator>cbaqir</dc:creator>
      <dc:date>2015-10-15T19:52:49Z</dc:date>
    </item>
    <item>
      <title>Re: Where Exists in Another Table</title>
      <link>https://community.qlik.com/t5/QlikView/Where-Exists-in-Another-Table/m-p/990355#M337492</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Glad I could help. I've done the same thing before. Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Oct 2015 19:56:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Where-Exists-in-Another-Table/m-p/990355#M337492</guid>
      <dc:creator>crystles</dc:creator>
      <dc:date>2015-10-15T19:56:35Z</dc:date>
    </item>
  </channel>
</rss>

