<?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 Using &amp;quot;like&amp;quot; function in SetExpression in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Using-quot-like-quot-function-in-SetExpression/m-p/334290#M492306</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It's possible to use like function in Set Expression?&lt;/P&gt;&lt;P&gt;What's the exact sintax for this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot.&lt;/P&gt;&lt;P&gt;Nutis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 04 Jul 2012 13:58:02 GMT</pubDate>
    <dc:creator />
    <dc:date>2012-07-04T13:58:02Z</dc:date>
    <item>
      <title>Using "like" function in SetExpression</title>
      <link>https://community.qlik.com/t5/QlikView/Using-quot-like-quot-function-in-SetExpression/m-p/334290#M492306</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It's possible to use like function in Set Expression?&lt;/P&gt;&lt;P&gt;What's the exact sintax for this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot.&lt;/P&gt;&lt;P&gt;Nutis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jul 2012 13:58:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-quot-like-quot-function-in-SetExpression/m-p/334290#M492306</guid>
      <dc:creator />
      <dc:date>2012-07-04T13:58:02Z</dc:date>
    </item>
    <item>
      <title>Re: Using "like" function in SetExpression</title>
      <link>https://community.qlik.com/t5/QlikView/Using-quot-like-quot-function-in-SetExpression/m-p/334291#M492307</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Like is a string operator, the Help says about like operator:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE cellspacing="0" class="TableStyle-LeftBold"&gt;&lt;TBODY&gt;&lt;TR class="Body-Body1"&gt;&lt;TD class="BodyE-Column1-Body1"&gt;&lt;BR /&gt;&lt;/TD&gt;&lt;TD class="BodyD-Column2-Body1"&gt;String comparison with wildcard characters. The operation returns a boolean true (-1) if the string before the operator is matched by the string after the operator. The second string may contain the wildcard characters * (any number of arbitrary characters) or ? (one arbitrary character). &lt;/TD&gt;&lt;/TR&gt;&lt;TR class="Body-Body1"&gt;&lt;TD class="BodyE-Column1-Body1"&gt; &lt;/TD&gt;&lt;TD class="BodyD-Column2-Body1"&gt;&lt;P class="example"&gt;Examples:&lt;/P&gt;&lt;SPAN class="Code"&gt;'abc' &lt;SPAN style="background-color: #0a246a; color: #ffffff;"&gt;like&lt;/SPAN&gt; 'a*'&lt;/SPAN&gt; returns true (-1)&lt;BR /&gt;&lt;SPAN class="Code"&gt;'abcd' &lt;SPAN style="background-color: #0a246a; color: #ffffff;"&gt;like&lt;/SPAN&gt; 'a?c*'&lt;/SPAN&gt; returns true (-1) &lt;BR /&gt;&lt;SPAN class="Code"&gt;'abc' &lt;SPAN style="background-color: #0a246a; color: #ffffff;"&gt;like&lt;/SPAN&gt; 'a??bc'&lt;/SPAN&gt; returns false (0)&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use the string operator e.g. in a field modifier search expression, e.g.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;=sum({&amp;lt;Name= {"=Name like '*Stefan*'"}&amp;gt;} Value)&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jul 2012 14:03:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-quot-like-quot-function-in-SetExpression/m-p/334291#M492307</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2012-07-04T14:03:21Z</dc:date>
    </item>
    <item>
      <title>Re: Using "like" function in SetExpression</title>
      <link>https://community.qlik.com/t5/QlikView/Using-quot-like-quot-function-in-SetExpression/m-p/334292#M492308</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you want a equivalent expression of SUM(X) WHERE Y LIKE '*Pippo*', you can use SetAnalysis like this:&lt;/P&gt;&lt;P&gt;Sum( {&amp;lt;Y = {'*Pippo*'}&amp;gt;} X)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;More info @ &lt;A class="loading" href="http://iqlik.wordpress.com/2010/09/11/the-magic-of-set-analysis-syntax-and-examples/"&gt;http://iqlik.wordpress.com/2010/09/11/the-magic-of-set-analysis-syntax-and-examples/&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jul 2012 14:16:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-quot-like-quot-function-in-SetExpression/m-p/334292#M492308</guid>
      <dc:creator />
      <dc:date>2012-07-04T14:16:13Z</dc:date>
    </item>
  </channel>
</rss>

