<?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 with exception in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Load-with-exception/m-p/765183#M271970</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I used the wizard to write the query and that worked well for me. What seems to have worked was a pair of brackets after the Where Clause.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your help! &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 09 Jan 2015 18:22:32 GMT</pubDate>
    <dc:creator />
    <dc:date>2015-01-09T18:22:32Z</dc:date>
    <item>
      <title>Load with exception</title>
      <link>https://community.qlik.com/t5/QlikView/Load-with-exception/m-p/765177#M271964</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 am trying to write a conditional Load script of the kind:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load *,&lt;/P&gt;&lt;P&gt;where PO_Number &amp;lt;&amp;gt; '12345';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Basically I am trying to load all data to a table except the rows with the PO_Number 12345. I'd appreciate guidance in this aspect. I believe I might have syntax issues most likely.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;P&gt;Deep&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Jan 2015 16:53:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-with-exception/m-p/765177#M271964</guid>
      <dc:creator />
      <dc:date>2015-01-09T16:53:20Z</dc:date>
    </item>
    <item>
      <title>Re: Load with exception</title>
      <link>https://community.qlik.com/t5/QlikView/Load-with-exception/m-p/765178#M271965</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;Try&lt;/P&gt;&lt;P&gt;Ex:-&lt;/P&gt;&lt;P&gt;Source:-&lt;/P&gt;&lt;P&gt;Load * From Location &lt;STRONG&gt;Where PO_Number &amp;lt;&amp;gt; '12345';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Or&lt;/P&gt;&lt;P&gt;Source:&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;Load * From Location;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Noconcatenate&lt;/P&gt;&lt;P&gt;Load * Resident Source &lt;STRONG&gt;Where PO_Number &amp;lt;&amp;gt; '12345';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Drop table Source;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anand&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Jan 2015 17:01:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-with-exception/m-p/765178#M271965</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2015-01-09T17:01:57Z</dc:date>
    </item>
    <item>
      <title>Re: Load with exception</title>
      <link>https://community.qlik.com/t5/QlikView/Load-with-exception/m-p/765179#M271966</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your load statement is missing a FROM clause to specify where the source data should come from. And if you're loading all the field using the * and not creating any new fields then the comma after the * should be removed too:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD *&lt;/P&gt;&lt;P&gt;FROM MySourceTable&lt;/P&gt;&lt;P&gt;WHERE PO_Number &amp;lt;&amp;gt; '12345'&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And if the field PO_Number contains numeric values instead of text values then use &lt;EM&gt;WHERE PO_Number &amp;lt;&amp;gt; 12345&lt;/EM&gt; (without the quotes).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Jan 2015 17:03:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-with-exception/m-p/765179#M271966</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2015-01-09T17:03:39Z</dc:date>
    </item>
    <item>
      <title>Re: Load with exception</title>
      <link>https://community.qlik.com/t5/QlikView/Load-with-exception/m-p/765180#M271967</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tried the same but I keep getting the following error:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Error.jpg" class="image-1 jive-image" src="https://community.qlik.com/legacyfs/online/74997_Error.jpg" style="height: 218px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Jan 2015 17:11:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-with-exception/m-p/765180#M271967</guid>
      <dc:creator />
      <dc:date>2015-01-09T17:11:56Z</dc:date>
    </item>
    <item>
      <title>Re: Load with exception</title>
      <link>https://community.qlik.com/t5/QlikView/Load-with-exception/m-p/765181#M271968</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Then the field name is not PO NUMBER. Qlikview is case sensitive with regards to field names so. &lt;EM&gt;PO Number&lt;/EM&gt; is not the same as &lt;EM&gt;PO NUMBER.&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Jan 2015 17:14:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-with-exception/m-p/765181#M271968</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2015-01-09T17:14:09Z</dc:date>
    </item>
    <item>
      <title>Re: Load with exception</title>
      <link>https://community.qlik.com/t5/QlikView/Load-with-exception/m-p/765182#M271969</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;It seems you mix the &amp;lt;&amp;gt; symbol with the field name also check you are using correct name and you are used it&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where [PO Number&lt;STRONG&gt;]&amp;lt;&lt;/STRONG&gt;&amp;gt; '12345';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It Will be&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Source:-&lt;/P&gt;&lt;P&gt;Load * From Location &lt;/P&gt;&lt;P&gt;Where [PO Number] &amp;lt;&amp;gt; '12345';&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anand&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Jan 2015 17:22:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-with-exception/m-p/765182#M271969</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2015-01-09T17:22:14Z</dc:date>
    </item>
    <item>
      <title>Re: Load with exception</title>
      <link>https://community.qlik.com/t5/QlikView/Load-with-exception/m-p/765183#M271970</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I used the wizard to write the query and that worked well for me. What seems to have worked was a pair of brackets after the Where Clause.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your help! &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Jan 2015 18:22:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-with-exception/m-p/765183#M271970</guid>
      <dc:creator />
      <dc:date>2015-01-09T18:22:32Z</dc:date>
    </item>
  </channel>
</rss>

