<?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: SQL LIKE FUNCTION IN QLIKVIEW? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/SQL-LIKE-FUNCTION-IN-QLIKVIEW/m-p/275630#M102841</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Laura,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Match() and MixMatch() and WildMatch() will do, specially this last one, they are a combination of IN and LIKE. But the LIKE operator exists and works in QlikView as well. This Data table will return &lt;EM&gt;only&lt;/EM&gt; one row (Advanced, 100).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code"&gt;&lt;P&gt;Data:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;Name, Value&lt;/P&gt;&lt;P&gt;Advanced, 100&lt;/P&gt;&lt;P&gt;Ultimate, 900&lt;/P&gt;&lt;P&gt;Normal, 50&lt;/P&gt;&lt;P&gt;]&lt;/P&gt;&lt;P&gt;WHERE Name LIKE 'A*'; &lt;/P&gt;&lt;P&gt;// this is the same as&lt;/P&gt;&lt;P&gt;// WHERE Left(Name, 1) = 'A';&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Miguel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 13 Jan 2012 16:04:28 GMT</pubDate>
    <dc:creator>Miguel_Angel_Baeyens</dc:creator>
    <dc:date>2012-01-13T16:04:28Z</dc:date>
    <item>
      <title>SQL LIKE FUNCTION IN QLIKVIEW?</title>
      <link>https://community.qlik.com/t5/QlikView/SQL-LIKE-FUNCTION-IN-QLIKVIEW/m-p/275627#M102838</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;Is there a sql like function in qlikview?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Laura &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Jan 2012 14:50:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SQL-LIKE-FUNCTION-IN-QLIKVIEW/m-p/275627#M102838</guid>
      <dc:creator />
      <dc:date>2012-01-13T14:50:05Z</dc:date>
    </item>
    <item>
      <title>Re: SQL LIKE FUNCTION IN QLIKVIEW?</title>
      <link>https://community.qlik.com/t5/QlikView/SQL-LIKE-FUNCTION-IN-QLIKVIEW/m-p/275628#M102839</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi.&lt;/P&gt;&lt;P&gt;Yes. You can find it in the referential manuel "&lt;STRONG style="font-family: Arial;"&gt;Advanced Search"&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Jan 2012 15:17:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SQL-LIKE-FUNCTION-IN-QLIKVIEW/m-p/275628#M102839</guid>
      <dc:creator />
      <dc:date>2012-01-13T15:17:17Z</dc:date>
    </item>
    <item>
      <title>Re: SQL LIKE FUNCTION IN QLIKVIEW?</title>
      <link>https://community.qlik.com/t5/QlikView/SQL-LIKE-FUNCTION-IN-QLIKVIEW/m-p/275629#M102840</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In your where clause use&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MixMatch(FieldName, 'String1', 'String2', 'String3')&amp;gt;0&lt;/P&gt;&lt;P&gt;Of course this only works on the Load statement and not the SQL Select&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry read the question wrong.&amp;nbsp; The above reply is for a SQL IN statement.&amp;nbsp; The post below is correct with WildMatch(FieldName, 'String1*')&amp;gt;0&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Jan 2012 15:38:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SQL-LIKE-FUNCTION-IN-QLIKVIEW/m-p/275629#M102840</guid>
      <dc:creator />
      <dc:date>2012-01-13T15:38:14Z</dc:date>
    </item>
    <item>
      <title>Re: SQL LIKE FUNCTION IN QLIKVIEW?</title>
      <link>https://community.qlik.com/t5/QlikView/SQL-LIKE-FUNCTION-IN-QLIKVIEW/m-p/275630#M102841</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Laura,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Match() and MixMatch() and WildMatch() will do, specially this last one, they are a combination of IN and LIKE. But the LIKE operator exists and works in QlikView as well. This Data table will return &lt;EM&gt;only&lt;/EM&gt; one row (Advanced, 100).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code"&gt;&lt;P&gt;Data:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;Name, Value&lt;/P&gt;&lt;P&gt;Advanced, 100&lt;/P&gt;&lt;P&gt;Ultimate, 900&lt;/P&gt;&lt;P&gt;Normal, 50&lt;/P&gt;&lt;P&gt;]&lt;/P&gt;&lt;P&gt;WHERE Name LIKE 'A*'; &lt;/P&gt;&lt;P&gt;// this is the same as&lt;/P&gt;&lt;P&gt;// WHERE Left(Name, 1) = 'A';&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Miguel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Jan 2012 16:04:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SQL-LIKE-FUNCTION-IN-QLIKVIEW/m-p/275630#M102841</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2012-01-13T16:04:28Z</dc:date>
    </item>
    <item>
      <title>Re: SQL LIKE FUNCTION IN QLIKVIEW?</title>
      <link>https://community.qlik.com/t5/QlikView/SQL-LIKE-FUNCTION-IN-QLIKVIEW/m-p/275631#M102842</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;Please use "wildmatch" function which is equivalent for (LIKE, NOT LIKE, IN) in SQL. Moreover wildmatch will do and case insensitive comparison. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;Col 1,&lt;/P&gt;&lt;P&gt;Col 2&lt;/P&gt;&lt;P&gt;Col 3&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;....&lt;/P&gt;&lt;P&gt;WHERE&lt;/P&gt;&lt;P&gt;Wildmatch(Col 1, *A*);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 15 Jan 2012 06:46:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SQL-LIKE-FUNCTION-IN-QLIKVIEW/m-p/275631#M102842</guid>
      <dc:creator />
      <dc:date>2012-01-15T06:46:17Z</dc:date>
    </item>
    <item>
      <title>SQL LIKE FUNCTION IN QLIKVIEW?</title>
      <link>https://community.qlik.com/t5/QlikView/SQL-LIKE-FUNCTION-IN-QLIKVIEW/m-p/275632#M102843</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;And how can I do if I wish for a&amp;nbsp; NOT LIKE function at the LOAD script?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/cool.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Le Scorda&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Apr 2012 18:31:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SQL-LIKE-FUNCTION-IN-QLIKVIEW/m-p/275632#M102843</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-04-26T18:31:20Z</dc:date>
    </item>
    <item>
      <title>SQL LIKE FUNCTION IN QLIKVIEW?</title>
      <link>https://community.qlik.com/t5/QlikView/SQL-LIKE-FUNCTION-IN-QLIKVIEW/m-p/275633#M102844</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;NOT LIKE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WILDMATCH( Field01, 'Value01', 'Value02')=0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;that way you delete these values&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Apr 2012 20:55:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SQL-LIKE-FUNCTION-IN-QLIKVIEW/m-p/275633#M102844</guid>
      <dc:creator>nicolett_yuri</dc:creator>
      <dc:date>2012-04-26T20:55:47Z</dc:date>
    </item>
    <item>
      <title>Re: SQL LIKE FUNCTION IN QLIKVIEW?</title>
      <link>https://community.qlik.com/t5/QlikView/SQL-LIKE-FUNCTION-IN-QLIKVIEW/m-p/275634#M102845</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm not 100% sure which version the LIKE function was introduced into QlikView but I'm using 11.2 and you can simply use LIKE as you would do in SQL except you use * as opposed to % for wild matches.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD *&lt;/P&gt;&lt;P&gt;FROM [.\Expenses.QVD](QVD)&lt;/P&gt;&lt;P&gt;WHERE TeamMember LIKE '*mahleka*';&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 20 Apr 2014 23:17:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SQL-LIKE-FUNCTION-IN-QLIKVIEW/m-p/275634#M102845</guid>
      <dc:creator>siz_mahleka</dc:creator>
      <dc:date>2014-04-20T23:17:30Z</dc:date>
    </item>
    <item>
      <title>Re: SQL LIKE FUNCTION IN QLIKVIEW?</title>
      <link>https://community.qlik.com/t5/QlikView/SQL-LIKE-FUNCTION-IN-QLIKVIEW/m-p/275635#M102846</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;II'm going to try not LIKE to see if it works.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Sep 2014 04:43:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SQL-LIKE-FUNCTION-IN-QLIKVIEW/m-p/275635#M102846</guid>
      <dc:creator />
      <dc:date>2014-09-23T04:43:20Z</dc:date>
    </item>
    <item>
      <title>Re: SQL LIKE FUNCTION IN QLIKVIEW?</title>
      <link>https://community.qlik.com/t5/QlikView/SQL-LIKE-FUNCTION-IN-QLIKVIEW/m-p/275636#M102847</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI&lt;/P&gt;&lt;P&gt;MATCH(),&lt;/P&gt;&lt;P&gt;WILDMATCH()&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Sep 2014 04:47:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SQL-LIKE-FUNCTION-IN-QLIKVIEW/m-p/275636#M102847</guid>
      <dc:creator />
      <dc:date>2014-09-23T04:47:25Z</dc:date>
    </item>
    <item>
      <title>Re: SQL LIKE FUNCTION IN QLIKVIEW?</title>
      <link>https://community.qlik.com/t5/QlikView/SQL-LIKE-FUNCTION-IN-QLIKVIEW/m-p/275637#M102848</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There are no. of Alternatives:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) Wildmatch() function&lt;/P&gt;&lt;P&gt;2) Mixmatch() function&lt;/P&gt;&lt;P&gt;3) Use Button: Create Button&amp;gt; Actions &amp;gt; Select in Field &amp;gt;&lt;/P&gt;&lt;P&gt;Name: Field Name&lt;/P&gt;&lt;P&gt;Search String: *Search String*&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Av7eN&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Sep 2014 04:47:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/SQL-LIKE-FUNCTION-IN-QLIKVIEW/m-p/275637#M102848</guid>
      <dc:creator>aveeeeeee7en</dc:creator>
      <dc:date>2014-09-23T04:47:45Z</dc:date>
    </item>
  </channel>
</rss>

