<?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 ... Where Not Exists in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/LOAD-Where-Not-Exists/m-p/570305#M212485</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok I think we found some solutions. Give me some time to try them out and find out the best for me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Two of them are using the MinString Funktion.&lt;/P&gt;&lt;P&gt;Are these solutions also working with other scenarios or only with E and F because E is alphabeticly smaller than F?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 27 Mar 2014 14:54:50 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-03-27T14:54:50Z</dc:date>
    <item>
      <title>LOAD ... Where Not Exists</title>
      <link>https://community.qlik.com/t5/QlikView/LOAD-Where-Not-Exists/m-p/570299#M212479</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi I am searching for a solution for following problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I try to load only data where the 3rd field ist always F. If there is an entry with E it should skip all values for the material.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So in my example picutere i will only have material 1,2 and 5.&lt;/P&gt;&lt;P&gt;3 should be skipped because it is allways E (thats a simple where clause)&lt;/P&gt;&lt;P&gt;and 4 should be also skipped because one of the entrys is E&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can i do it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Bsp.jpg" class="jive-image" src="https://community.qlik.com/legacyfs/online/56029_Bsp.jpg" style="width: auto; height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Mar 2014 13:07:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/LOAD-Where-Not-Exists/m-p/570299#M212479</guid>
      <dc:creator />
      <dc:date>2014-03-27T13:07:48Z</dc:date>
    </item>
    <item>
      <title>Re: LOAD ... Where Not Exists</title>
      <link>https://community.qlik.com/t5/QlikView/LOAD-Where-Not-Exists/m-p/570300#M212480</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 table name&lt;/P&gt;&lt;P&gt;where ThirdFieldName = 'F';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #800000;"&gt;&lt;STRONG&gt;UPDATE :&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #800000;"&gt;&lt;STRONG&gt;Temp:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #800000;"&gt;&lt;STRONG&gt;Load * Inline&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #800000;"&gt;&lt;STRONG&gt;[&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #800000;"&gt;&lt;STRONG&gt;&amp;nbsp; F1, F2, F3&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #800000;"&gt;&lt;STRONG&gt;&amp;nbsp; 1,A,F&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #800000;"&gt;&lt;STRONG&gt;&amp;nbsp; 2,B,F&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #800000;"&gt;&lt;STRONG&gt;&amp;nbsp; 3,A,E&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #800000;"&gt;&lt;STRONG&gt;&amp;nbsp; 4,A,E&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #800000;"&gt;&lt;STRONG&gt;&amp;nbsp; 4,B,F&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #800000;"&gt;&lt;STRONG&gt;&amp;nbsp; 5,A,F&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #800000;"&gt;&lt;STRONG&gt;&amp;nbsp; 5,B,F&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #800000;"&gt;&lt;STRONG&gt;];&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: #800000;"&gt;&lt;STRONG&gt;Join&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #800000;"&gt;&lt;STRONG&gt;Load F1, MinString(F3) as MinFlag Resident Temp Group By F1;&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: #800000;"&gt;&lt;STRONG&gt;NoConcatenate&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #800000;"&gt;&lt;STRONG&gt;Final:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #800000;"&gt;&lt;STRONG&gt;Load F1, F2, F3&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #800000;"&gt;&lt;STRONG&gt;Resident Temp&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #800000;"&gt;&lt;STRONG&gt;Where MinFlag = 'F';&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: #800000;"&gt;&lt;STRONG&gt;Drop Table Temp;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Mar 2014 13:10:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/LOAD-Where-Not-Exists/m-p/570300#M212480</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2014-03-27T13:10:08Z</dc:date>
    </item>
    <item>
      <title>Re: LOAD ... Where Not Exists</title>
      <link>https://community.qlik.com/t5/QlikView/LOAD-Where-Not-Exists/m-p/570301#M212481</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Hi,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Load *&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;from table name&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;where ThirdFieldName &amp;lt;&amp;gt; 'E';&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Regards,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;PS&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Mar 2014 13:15:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/LOAD-Where-Not-Exists/m-p/570301#M212481</guid>
      <dc:creator>PrashantSangle</dc:creator>
      <dc:date>2014-03-27T13:15:44Z</dc:date>
    </item>
    <item>
      <title>Re: LOAD ... Where Not Exists</title>
      <link>https://community.qlik.com/t5/QlikView/LOAD-Where-Not-Exists/m-p/570302#M212482</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;//find the metrials to load&lt;/P&gt;&lt;P&gt;metrials_to_load:&lt;/P&gt;&lt;P&gt;load distinct &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;material As CheckValues&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;from XXX&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;where &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;ThirdFieldName&lt;/SPAN&gt;&amp;lt;&amp;gt;'F'&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;///load data&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data:&lt;/P&gt;&lt;P&gt;load *&lt;/P&gt;&lt;P&gt;from XXX&lt;/P&gt;&lt;P&gt;where not exists(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;CheckValues&lt;/SPAN&gt;,&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;material&lt;/SPAN&gt;)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Mar 2014 13:22:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/LOAD-Where-Not-Exists/m-p/570302#M212482</guid>
      <dc:creator>lironbaram</dc:creator>
      <dc:date>2014-03-27T13:22:04Z</dc:date>
    </item>
    <item>
      <title>Re: LOAD ... Where Not Exists</title>
      <link>https://community.qlik.com/t5/QlikView/LOAD-Where-Not-Exists/m-p/570303#M212483</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;I understand you wanna keep data from original table where FirstFieldName has only entries with 'F' in original table.&lt;/P&gt;&lt;P&gt;Here's a way:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Filtered_Table:&lt;/P&gt;&lt;P&gt;Load * &lt;/P&gt;&lt;P&gt;from table name&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Left Join(Filtered_Table)&lt;/P&gt;&lt;P&gt;Load Distinct FirstFieldName, 'X' as Flag_Not_F&lt;/P&gt;&lt;P&gt;from table name&lt;/P&gt;&lt;P&gt;Where ThirdFieldName &amp;lt;&amp;gt; 'F'&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Inner Join(Filtered_Table)&lt;/P&gt;&lt;P&gt;Load Distinct FirstFieldName&lt;/P&gt;&lt;P&gt;Resident Filtered_Table&lt;/P&gt;&lt;P&gt;Where IsNull(Flag_Not_F)&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Drop Field Flag_Not_F;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Mar 2014 13:26:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/LOAD-Where-Not-Exists/m-p/570303#M212483</guid>
      <dc:creator />
      <dc:date>2014-03-27T13:26:25Z</dc:date>
    </item>
    <item>
      <title>Re: LOAD ... Where Not Exists</title>
      <link>https://community.qlik.com/t5/QlikView/LOAD-Where-Not-Exists/m-p/570304#M212484</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please find the attached file and let me know if u have any problem&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Mar 2014 13:49:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/LOAD-Where-Not-Exists/m-p/570304#M212484</guid>
      <dc:creator>arsal_90</dc:creator>
      <dc:date>2014-03-27T13:49:44Z</dc:date>
    </item>
    <item>
      <title>Re: LOAD ... Where Not Exists</title>
      <link>https://community.qlik.com/t5/QlikView/LOAD-Where-Not-Exists/m-p/570305#M212485</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok I think we found some solutions. Give me some time to try them out and find out the best for me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Two of them are using the MinString Funktion.&lt;/P&gt;&lt;P&gt;Are these solutions also working with other scenarios or only with E and F because E is alphabeticly smaller than F?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Mar 2014 14:54:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/LOAD-Where-Not-Exists/m-p/570305#M212485</guid>
      <dc:creator />
      <dc:date>2014-03-27T14:54:50Z</dc:date>
    </item>
  </channel>
</rss>

