<?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: How to load data with a filter on related table in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-load-data-with-a-filter-on-related-table/m-p/811680#M286509</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Unfortunately, for this script I have the following strange result:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="555.png" class="image-1 jive-image" src="https://community.qlik.com/legacyfs/online/75633_555.png" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 19 Jan 2015 10:25:08 GMT</pubDate>
    <dc:creator />
    <dc:date>2015-01-19T10:25:08Z</dc:date>
    <item>
      <title>How to load data with a filter on related table</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-load-data-with-a-filter-on-related-table/m-p/811675#M286504</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello! I have the following problem. I want to load data from three excel tables: &lt;/P&gt;&lt;P&gt;&lt;IMG alt="fsdfds.png" class="image-1 jive-image" height="298" src="https://community.qlik.com/legacyfs/online/75624_fsdfds.png" style="height: 298px; width: 268.872180451128px;" width="269" /&gt;&lt;/P&gt;&lt;P&gt;BUT I don't want to load sales in Brazil. So, my result must be:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="fsdfds.png" class="jive-image image-2" src="https://community.qlik.com/legacyfs/online/75625_fsdfds.png" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;If I could use SQL, I would wright the following code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG&gt;SELECT * FROM Sales LEFT OUTER JOIN Managers ON Sales.[Manager ID]=Managers.[Manager ID] LEFT OUTER JOIN Regions ON Managers.[Region ID]=Regions.[Region ID] WHERE NOT Regiopns.Name LIKE 'Brazil';&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What loading commands should I wright in QlikView loading script??? I have been looking for solution about 5 hours and I couldnt solve this problem. Help, please!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Jan 2015 09:40:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-load-data-with-a-filter-on-related-table/m-p/811675#M286504</guid>
      <dc:creator />
      <dc:date>2015-01-19T09:40:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to load data with a filter on related table</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-load-data-with-a-filter-on-related-table/m-p/811676#M286505</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG&gt;Load * FROM Sales;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG&gt;LEFT JOIN &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG&gt;Load * From Managers;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG&gt;Inner JOIN &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG&gt;Load * From Regions Where [Region ID] &amp;lt;&amp;gt; 2;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG&gt;let me know&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Jan 2015 09:44:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-load-data-with-a-filter-on-related-table/m-p/811676#M286505</guid>
      <dc:creator>alexandros17</dc:creator>
      <dc:date>2015-01-19T09:44:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to load data with a filter on related table</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-load-data-with-a-filter-on-related-table/m-p/811677#M286506</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Something like this should work:&lt;/P&gt;&lt;P&gt;Sales:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;Amount,&lt;/P&gt;&lt;P&gt;Manager_ID&lt;/P&gt;&lt;P&gt;From Sales;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Left join(Sales)&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;Name as ManagerName,&lt;/P&gt;&lt;P&gt;Manager_ID,&lt;/P&gt;&lt;P&gt;Region_ID&lt;/P&gt;&lt;P&gt;From Managers&lt;/P&gt;&lt;P&gt;where not Region_ID=2;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Left join(Sales)&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;Names as RegionName,&lt;/P&gt;&lt;P&gt;Region_ID&lt;/P&gt;&lt;P&gt;From Regions;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Jan 2015 09:45:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-load-data-with-a-filter-on-related-table/m-p/811677#M286506</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-01-19T09:45:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to load data with a filter on related table</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-load-data-with-a-filter-on-related-table/m-p/811678#M286507</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I lose manager with ID=3 if I use this script &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/sad.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Jan 2015 10:10:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-load-data-with-a-filter-on-related-table/m-p/811678#M286507</guid>
      <dc:creator />
      <dc:date>2015-01-19T10:10:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to load data with a filter on related table</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-load-data-with-a-filter-on-related-table/m-p/811679#M286508</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So use this script,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TEMP:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG&gt;Load * FROM Sales;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG&gt;LEFT JOIN &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG&gt;Load * From Managers;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG&gt;LEFTJOIN &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG&gt;Load * From Regions ;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG&gt;MyTable:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG&gt;noconcatenate&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG&gt;Load * resident TEMP &lt;/STRONG&gt;&lt;STRONG&gt;Where [Region ID] &amp;lt;&amp;gt; 2;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG&gt;drop table TEMP;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG&gt;let me know&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Jan 2015 10:13:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-load-data-with-a-filter-on-related-table/m-p/811679#M286508</guid>
      <dc:creator>alexandros17</dc:creator>
      <dc:date>2015-01-19T10:13:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to load data with a filter on related table</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-load-data-with-a-filter-on-related-table/m-p/811680#M286509</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Unfortunately, for this script I have the following strange result:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="555.png" class="image-1 jive-image" src="https://community.qlik.com/legacyfs/online/75633_555.png" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Jan 2015 10:25:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-load-data-with-a-filter-on-related-table/m-p/811680#M286509</guid>
      <dc:creator />
      <dc:date>2015-01-19T10:25:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to load data with a filter on related table</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-load-data-with-a-filter-on-related-table/m-p/811681#M286510</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;IT WORKS! Thank you very much, Alessandro! &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Jan 2015 10:34:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-load-data-with-a-filter-on-related-table/m-p/811681#M286510</guid>
      <dc:creator />
      <dc:date>2015-01-19T10:34:21Z</dc:date>
    </item>
  </channel>
</rss>

