<?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: Like % expression? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Like-expression/m-p/1282605#M402050</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you I changed '%' to '*' and everything is working now.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 15 Feb 2017 18:10:45 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2017-02-15T18:10:45Z</dc:date>
    <item>
      <title>Like % expression?</title>
      <link>https://community.qlik.com/t5/QlikView/Like-expression/m-p/1282601#M402046</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 create an expression in a multibox, the idea is that if the user start with US, MX, CAN, BRA, HON, GUA, exc. should be America, if it's JAP, CHN, etc should be APJ. I am using something like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;If&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; (&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;AuthenticatedUser&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;like&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; 'US%','AMERICA',&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;If&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; (&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;AuthenticatedUser&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;like&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; 'EM%','EMEA',&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;If&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; (&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;AuthenticatedUser&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;like&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; 'AP%','AP','Without Region'))) &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;But this is not working, all records are now on Without Region. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;BR /&gt;What can I do to have them grouped correctly?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Feb 2017 17:44:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Like-expression/m-p/1282601#M402046</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-02-15T17:44:22Z</dc:date>
    </item>
    <item>
      <title>Re: Like % expression?</title>
      <link>https://community.qlik.com/t5/QlikView/Like-expression/m-p/1282602#M402047</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would suggest you to create a new field in the script with and then use that as your multibox field&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;If(AuthenticatedUser like 'US%','AMERICA',&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;If(AuthenticatedUser like 'EM%','EMEA',&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;If(AuthenticatedUser like 'AP%','AP','Without Region'))) as NewField&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Feb 2017 17:57:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Like-expression/m-p/1282602#M402047</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-02-15T17:57:05Z</dc:date>
    </item>
    <item>
      <title>Re: Like % expression?</title>
      <link>https://community.qlik.com/t5/QlikView/Like-expression/m-p/1282603#M402048</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you tried Match () or wildmatch () with pick ()? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Look here how to use pick () with MATCH ()&lt;/P&gt;&lt;P&gt;&lt;A href="http://qlikviewcookbook.com/2008/10/the-match-function/" title="http://qlikviewcookbook.com/2008/10/the-match-function/"&gt;The match() Function | Qlikview Cookbook&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Feb 2017 18:04:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Like-expression/m-p/1282603#M402048</guid>
      <dc:creator>vinieme12</dc:creator>
      <dc:date>2017-02-15T18:04:27Z</dc:date>
    </item>
    <item>
      <title>Re: Like % expression?</title>
      <link>https://community.qlik.com/t5/QlikView/Like-expression/m-p/1282604#M402049</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Also, try using * instead of %&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;=If(AuthenticatedUser like 'US&lt;SPAN style="color: #ff0000;"&gt;*&lt;/SPAN&gt;','AMERICA',&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;If(AuthenticatedUser like 'EM&lt;STRONG style="color: #ff0000; font-size: 13.3333px;"&gt;*&lt;/STRONG&gt;','EMEA',&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;If(AuthenticatedUser like 'AP&lt;STRONG style="color: #ff0000; font-size: 13.3333px;"&gt;*&lt;/STRONG&gt;','AP','Without Region')))&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Feb 2017 18:06:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Like-expression/m-p/1282604#M402049</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2017-02-15T18:06:41Z</dc:date>
    </item>
    <item>
      <title>Re: Like % expression?</title>
      <link>https://community.qlik.com/t5/QlikView/Like-expression/m-p/1282605#M402050</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you I changed '%' to '*' and everything is working now.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Feb 2017 18:10:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Like-expression/m-p/1282605#M402050</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-02-15T18:10:45Z</dc:date>
    </item>
  </channel>
</rss>

