<?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: Load statement exluding multiple values from another table in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Load-statement-exluding-multiple-values-from-another-table/m-p/484951#M181181</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you all so much for your quick answers.&amp;nbsp; One last question, though.&amp;nbsp; Is there a limit to how many values can be excluded?&amp;nbsp; I have about 50 different values to exclude.&amp;nbsp; Thanks again to all &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, 12 Aug 2013 13:36:44 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2013-08-12T13:36:44Z</dc:date>
    <item>
      <title>Load statement exluding multiple values from another table</title>
      <link>https://community.qlik.com/t5/QlikView/Load-statement-exluding-multiple-values-from-another-table/m-p/484947#M181177</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello to all.&amp;nbsp; This problem really has me stumped.&amp;nbsp; I have a table with one column in it.&amp;nbsp; This column has about fifty rows, each with a different value.&amp;nbsp; Basically, the table houses values that do not need to be selected.&amp;nbsp; I want to be able to query in Qlikview, writing a statement that excludes any of the values from the first table.&amp;nbsp; Is there a way to do this?&amp;nbsp; I hope that I have explained this clearly enough.&amp;nbsp; Thank you &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, 12 Aug 2013 13:12:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-statement-exluding-multiple-values-from-another-table/m-p/484947#M181177</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-08-12T13:12:18Z</dc:date>
    </item>
    <item>
      <title>Re: Load statement exluding multiple values from another table</title>
      <link>https://community.qlik.com/t5/QlikView/Load-statement-exluding-multiple-values-from-another-table/m-p/484948#M181178</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yeah Supplose&lt;/P&gt;&lt;P&gt;ExcludingField has many value from1 to 100 ; i exclude 3 values like 40,50,13&lt;/P&gt;&lt;P&gt;so ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can write this way &lt;/P&gt;&lt;P&gt;load &lt;/P&gt;&lt;P&gt;FieldA,&lt;/P&gt;&lt;P&gt;FieldB,&lt;/P&gt;&lt;P&gt;FieldC,&lt;/P&gt;&lt;P&gt;ExcludingField&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;from Table&lt;/P&gt;&lt;P&gt;where wildmatch(ExcludingField&amp;lt;&amp;gt;'40','50','13');&lt;/P&gt;&lt;P&gt;if you want exclude one value like 40then try this way to write where condition&lt;/P&gt;&lt;P&gt;where ExcludingField&amp;lt;&amp;gt;'40';&lt;/P&gt;&lt;P&gt;hope it helps you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Aug 2013 13:17:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-statement-exluding-multiple-values-from-another-table/m-p/484948#M181178</guid>
      <dc:creator>er_mohit</dc:creator>
      <dc:date>2013-08-12T13:17:49Z</dc:date>
    </item>
    <item>
      <title>Re: Load statement exluding multiple values from another table</title>
      <link>https://community.qlik.com/t5/QlikView/Load-statement-exluding-multiple-values-from-another-table/m-p/484949#M181179</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Something using the exists function:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table1:&lt;/P&gt;&lt;P&gt;Load A from somewhere;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table2:&lt;/P&gt;&lt;P&gt;Load B,C,D from somewhereelse&lt;/P&gt;&lt;P&gt;where not exists(A,B); // meaning don't load the records where the value of B exists in field A in table1.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Aug 2013 13:19:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-statement-exluding-multiple-values-from-another-table/m-p/484949#M181179</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2013-08-12T13:19:31Z</dc:date>
    </item>
    <item>
      <title>Re: Load statement exluding multiple values from another table</title>
      <link>https://community.qlik.com/t5/QlikView/Load-statement-exluding-multiple-values-from-another-table/m-p/484950#M181180</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load&amp;nbsp; Field1 From firsttable;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Finaltable:&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Field1,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Field2,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ....&lt;/P&gt;&lt;P&gt;From MainTbale Where Not Exists(Field1,Field1);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Aug 2013 13:20:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-statement-exluding-multiple-values-from-another-table/m-p/484950#M181180</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2013-08-12T13:20:59Z</dc:date>
    </item>
    <item>
      <title>Re: Load statement exluding multiple values from another table</title>
      <link>https://community.qlik.com/t5/QlikView/Load-statement-exluding-multiple-values-from-another-table/m-p/484951#M181181</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you all so much for your quick answers.&amp;nbsp; One last question, though.&amp;nbsp; Is there a limit to how many values can be excluded?&amp;nbsp; I have about 50 different values to exclude.&amp;nbsp; Thanks again to all &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, 12 Aug 2013 13:36:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-statement-exluding-multiple-values-from-another-table/m-p/484951#M181181</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-08-12T13:36:44Z</dc:date>
    </item>
    <item>
      <title>Re: Load statement exluding multiple values from another table</title>
      <link>https://community.qlik.com/t5/QlikView/Load-statement-exluding-multiple-values-from-another-table/m-p/484952#M181182</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you all so much for your quick answers.&amp;nbsp; One last question, though.&amp;nbsp; Is there a limit to how many values can be excluded?&amp;nbsp; I have about 50 different values to exclude.&amp;nbsp; Thanks again to all &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, 12 Aug 2013 13:37:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-statement-exluding-multiple-values-from-another-table/m-p/484952#M181182</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-08-12T13:37:02Z</dc:date>
    </item>
    <item>
      <title>Re: Load statement exluding multiple values from another table</title>
      <link>https://community.qlik.com/t5/QlikView/Load-statement-exluding-multiple-values-from-another-table/m-p/484953#M181183</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks so much for your quick reply.&amp;nbsp; To all, my only other question is.... is there a limit to how many values can be excluded?&amp;nbsp; I have about 50 different values to exclude.&amp;nbsp; That's why I wasn't sure if I could name the separate table in the select statement that houses that list of values.&amp;nbsp; Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Aug 2013 13:41:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-statement-exluding-multiple-values-from-another-table/m-p/484953#M181183</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-08-12T13:41:36Z</dc:date>
    </item>
    <item>
      <title>Re: Load statement exluding multiple values from another table</title>
      <link>https://community.qlik.com/t5/QlikView/Load-statement-exluding-multiple-values-from-another-table/m-p/484954#M181184</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Without any limit, any number of records loaded in the first table will be excluded.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Aug 2013 13:42:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-statement-exluding-multiple-values-from-another-table/m-p/484954#M181184</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2013-08-12T13:42:18Z</dc:date>
    </item>
  </channel>
</rss>

