<?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: Use CONCAT with &amp;quot;other&amp;quot; string functions. in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Use-CONCAT-with-quot-other-quot-string-functions/m-p/1099171#M364911</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yeah, that would also work out. Now that I see it, it's so obvious!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 18 May 2016 23:00:50 GMT</pubDate>
    <dc:creator>alexdataiq</dc:creator>
    <dc:date>2016-05-18T23:00:50Z</dc:date>
    <item>
      <title>Use CONCAT with "other" string functions.</title>
      <link>https://community.qlik.com/t5/QlikView/Use-CONCAT-with-quot-other-quot-string-functions/m-p/1099167#M364907</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everybody, I'm facing some issues here:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it possible to use the &lt;STRONG&gt;Match&lt;/STRONG&gt; function with the result of a &lt;STRONG&gt;Concat&lt;/STRONG&gt; or &lt;STRONG&gt;Index &lt;/STRONG&gt;function over a field? Doesn't seem to be working for me, Match always return 0. Maybe I'm missing something here?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've a attached a very simple example.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 May 2016 22:42:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Use-CONCAT-with-quot-other-quot-string-functions/m-p/1099167#M364907</guid>
      <dc:creator>alexdataiq</dc:creator>
      <dc:date>2016-05-18T22:42:50Z</dc:date>
    </item>
    <item>
      <title>Re: Use CONCAT with "other" string functions.</title>
      <link>https://community.qlik.com/t5/QlikView/Use-CONCAT-with-quot-other-quot-string-functions/m-p/1099168#M364908</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;=Match('X1', $(=Chr (39) &amp;amp; Concat(Sheet, Chr(39) &amp;amp; ',' &amp;amp; Chr(39)) &amp;amp; Chr(39)))&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;=SubStringCount(Chr (39) &amp;amp; Concat(Sheet, Chr(39) &amp;amp; ',' &amp;amp; Chr(39)) &amp;amp; Chr(39), 'X1')&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 May 2016 22:47:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Use-CONCAT-with-quot-other-quot-string-functions/m-p/1099168#M364908</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-05-18T22:47:48Z</dc:date>
    </item>
    <item>
      <title>Re: Use CONCAT with "other" string functions.</title>
      <link>https://community.qlik.com/t5/QlikView/Use-CONCAT-with-quot-other-quot-string-functions/m-p/1099169#M364909</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Or maybe just&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=Max(Match(Sheet,'X1'))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;though it's not using Concat()..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 May 2016 22:53:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Use-CONCAT-with-quot-other-quot-string-functions/m-p/1099169#M364909</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2016-05-18T22:53:34Z</dc:date>
    </item>
    <item>
      <title>Re: Use CONCAT with "other" string functions.</title>
      <link>https://community.qlik.com/t5/QlikView/Use-CONCAT-with-quot-other-quot-string-functions/m-p/1099170#M364910</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Awesome! You're the man Sunny!&lt;/P&gt;&lt;P&gt;If I don't use the dollar expansion &lt;STRONG&gt;&lt;EM&gt;what string am I inputting in the second parameter of &lt;/EM&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;&lt;EM&gt;Match&lt;/EM&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;? &lt;SPAN style="color: #0000ff;"&gt;Chr(39&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff;"&gt;)&lt;/SPAN&gt; gets recognized (colored in blue) in the editor so I assumed it was evaluating the string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 May 2016 22:55:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Use-CONCAT-with-quot-other-quot-string-functions/m-p/1099170#M364910</guid>
      <dc:creator>alexdataiq</dc:creator>
      <dc:date>2016-05-18T22:55:29Z</dc:date>
    </item>
    <item>
      <title>Re: Use CONCAT with "other" string functions.</title>
      <link>https://community.qlik.com/t5/QlikView/Use-CONCAT-with-quot-other-quot-string-functions/m-p/1099171#M364911</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yeah, that would also work out. Now that I see it, it's so obvious!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 May 2016 23:00:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Use-CONCAT-with-quot-other-quot-string-functions/m-p/1099171#M364911</guid>
      <dc:creator>alexdataiq</dc:creator>
      <dc:date>2016-05-18T23:00:50Z</dc:date>
    </item>
    <item>
      <title>Re: Use CONCAT with "other" string functions.</title>
      <link>https://community.qlik.com/t5/QlikView/Use-CONCAT-with-quot-other-quot-string-functions/m-p/1099172#M364912</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;If I don't use the dollar expansion &lt;STRONG&gt;&lt;EM&gt;what string am I inputting in the second parameter of &lt;/EM&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;&lt;EM&gt;Match&lt;/EM&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;? &lt;SPAN style="color: #0000ff;"&gt;Chr(39&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff;"&gt;)&lt;/SPAN&gt; gets recognized (colored in blue) in the editor so I assumed it was evaluating the string.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think the expression editor syntax checker is misleading here. It doesn't seem to evaluate the expression at all.&lt;/P&gt;&lt;P&gt;I believe the Match() function expects just literal strings, comma separated as arguments to match the first argument (which could be an expression or field) against.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Besides this, if you like the SubstringCount() function, you don't need the fancy formatting here:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=SubStringCount( Concat(Sheet), 'X1')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or maybe using a delimiter if you have also values like X and 1 in your Sheet field:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=SubStringCount( Concat(Sheet,'|'), 'X1')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or if you want to use Index():&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=Index( Concat(Sheet), 'X1')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this might return values &amp;gt; 1 if 'X1' has been found, but Qlik will consider all values &amp;gt;0 as TRUE in a conditional expression (I assume that's where you need this expression)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Stefan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 May 2016 23:19:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Use-CONCAT-with-quot-other-quot-string-functions/m-p/1099172#M364912</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2016-05-18T23:19:49Z</dc:date>
    </item>
    <item>
      <title>Re: Use CONCAT with "other" string functions.</title>
      <link>https://community.qlik.com/t5/QlikView/Use-CONCAT-with-quot-other-quot-string-functions/m-p/1099173#M364913</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you very much Stefan. I'm sure this will come in handy in the future!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 May 2016 14:33:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Use-CONCAT-with-quot-other-quot-string-functions/m-p/1099173#M364913</guid>
      <dc:creator>alexdataiq</dc:creator>
      <dc:date>2016-05-19T14:33:18Z</dc:date>
    </item>
  </channel>
</rss>

