<?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 Not WildMatch Not Working in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Where-Not-WildMatch-Not-Working/m-p/1003114#M646988</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a load script below that I need to &lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;not&lt;/STRONG&gt;&lt;/SPAN&gt; include all names that start with 'ACCT' in the FirstName field.&amp;nbsp; The where clause below is not working and is failing the load script (see attached screen shot). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The where clause looks right based on multiple posts on this topic in the Community.&amp;nbsp; I'm not seeing where the issue is.&amp;nbsp; Has anyone dealt with this issue?&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you in advance for any assistance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Contacts:&lt;/P&gt;&lt;P&gt;LOAD LastName,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; FirstName,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CompanyName,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Telephone1,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Telephone2,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Email,&lt;/P&gt;&lt;P&gt;&amp;nbsp; AddressRecordNumber,&lt;/P&gt;&lt;P&gt;&amp;nbsp; IsPrimaryContact;&lt;/P&gt;&lt;P&gt;SQL SELECT *&lt;/P&gt;&lt;P&gt;FROM METLABCORPORATION.Contacts&lt;/P&gt;&lt;P&gt;WHERE Not WildMatch(FirstName,'ACCT*');&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 31 Oct 2015 19:07:44 GMT</pubDate>
    <dc:creator>asmithids</dc:creator>
    <dc:date>2015-10-31T19:07:44Z</dc:date>
    <item>
      <title>Where Not WildMatch Not Working</title>
      <link>https://community.qlik.com/t5/QlikView/Where-Not-WildMatch-Not-Working/m-p/1003114#M646988</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a load script below that I need to &lt;SPAN style="text-decoration: underline;"&gt;&lt;STRONG&gt;not&lt;/STRONG&gt;&lt;/SPAN&gt; include all names that start with 'ACCT' in the FirstName field.&amp;nbsp; The where clause below is not working and is failing the load script (see attached screen shot). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The where clause looks right based on multiple posts on this topic in the Community.&amp;nbsp; I'm not seeing where the issue is.&amp;nbsp; Has anyone dealt with this issue?&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you in advance for any assistance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Contacts:&lt;/P&gt;&lt;P&gt;LOAD LastName,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; FirstName,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CompanyName,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Telephone1,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Telephone2,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Email,&lt;/P&gt;&lt;P&gt;&amp;nbsp; AddressRecordNumber,&lt;/P&gt;&lt;P&gt;&amp;nbsp; IsPrimaryContact;&lt;/P&gt;&lt;P&gt;SQL SELECT *&lt;/P&gt;&lt;P&gt;FROM METLABCORPORATION.Contacts&lt;/P&gt;&lt;P&gt;WHERE Not WildMatch(FirstName,'ACCT*');&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 31 Oct 2015 19:07:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Where-Not-WildMatch-Not-Working/m-p/1003114#M646988</guid>
      <dc:creator>asmithids</dc:creator>
      <dc:date>2015-10-31T19:07:44Z</dc:date>
    </item>
    <item>
      <title>Re: Where Not WildMatch Not Working</title>
      <link>https://community.qlik.com/t5/QlikView/Where-Not-WildMatch-Not-Working/m-p/1003115#M646989</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Alec,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are using a SQL statement, you should use LIKE instead of WildMatch:&lt;/P&gt;&lt;P&gt;WHERE FirstName NOT LIKE 'ACCT%'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Daniel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 31 Oct 2015 19:13:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Where-Not-WildMatch-Not-Working/m-p/1003115#M646989</guid>
      <dc:creator />
      <dc:date>2015-10-31T19:13:58Z</dc:date>
    </item>
    <item>
      <title>Re: Where Not WildMatch Not Working</title>
      <link>https://community.qlik.com/t5/QlikView/Where-Not-WildMatch-Not-Working/m-p/1003116#M646990</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The where condition with wildmatch() which is a qv-functions needs to applied to the preceeding-load:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Contacts:&lt;/P&gt;&lt;P&gt;LOAD LastName,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; FirstName,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CompanyName,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Telephone1,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Telephone2,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Email,&lt;/P&gt;&lt;P&gt;&amp;nbsp; AddressRecordNumber,&lt;/P&gt;&lt;P&gt;&amp;nbsp; IsPrimaryContact&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;WHERE Not WildMatch(FirstName,'ACCT*');&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;SQL SELECT *&lt;/P&gt;&lt;P&gt;FROM METLABCORPORATION.Contacts;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 31 Oct 2015 19:14:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Where-Not-WildMatch-Not-Working/m-p/1003116#M646990</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-10-31T19:14:04Z</dc:date>
    </item>
    <item>
      <title>Re: Where Not WildMatch Not Working</title>
      <link>https://community.qlik.com/t5/QlikView/Where-Not-WildMatch-Not-Working/m-p/1003117#M646991</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Marcus is right that you can only use Wildmatch in the LOAD statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It might be preferable to let the DBMS filter the records, so something like this should also work:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Contacts:&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD LastName,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; FirstName,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CompanyName,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Telephone1,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Telephone2,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Email,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; AddressRecordNumber,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp; IsPrimaryContact;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;SQL SELECT *&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;FROM METLABCORPORATION.Contacts&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;WHERE FirstName NOT LIKE 'ACCT%';&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 31 Oct 2015 19:23:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Where-Not-WildMatch-Not-Working/m-p/1003117#M646991</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2015-10-31T19:23:03Z</dc:date>
    </item>
    <item>
      <title>Re: Where Not WildMatch Not Working</title>
      <link>https://community.qlik.com/t5/QlikView/Where-Not-WildMatch-Not-Working/m-p/1003118#M646992</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you &lt;SPAN style="color: #000000; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Marcus&lt;/SPAN&gt;.&amp;nbsp; I won't make that mistake again &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 31 Oct 2015 19:58:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Where-Not-WildMatch-Not-Working/m-p/1003118#M646992</guid>
      <dc:creator>asmithids</dc:creator>
      <dc:date>2015-10-31T19:58:31Z</dc:date>
    </item>
    <item>
      <title>Re: Where Not WildMatch Not Working</title>
      <link>https://community.qlik.com/t5/QlikView/Where-Not-WildMatch-Not-Working/m-p/1003119#M646993</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you swuehl.&amp;nbsp; That did the trick.&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 31 Oct 2015 19:59:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Where-Not-WildMatch-Not-Working/m-p/1003119#M646993</guid>
      <dc:creator>asmithids</dc:creator>
      <dc:date>2015-10-31T19:59:32Z</dc:date>
    </item>
    <item>
      <title>Re: Where Not WildMatch Not Working</title>
      <link>https://community.qlik.com/t5/QlikView/Where-Not-WildMatch-Not-Working/m-p/1003120#M646994</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Daniel&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Nov 2015 20:28:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Where-Not-WildMatch-Not-Working/m-p/1003120#M646994</guid>
      <dc:creator>asmithids</dc:creator>
      <dc:date>2015-11-02T20:28:50Z</dc:date>
    </item>
  </channel>
</rss>

