<?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: show if value is present in string in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/show-if-value-is-present-in-string/m-p/784966#M277791</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks but it is not the complete solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Because the string can go up to 11,12, etc. So with the following string: 3,8,11 it will still identify '1' in '11'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 05 Dec 2014 14:29:36 GMT</pubDate>
    <dc:creator>pepe2209</dc:creator>
    <dc:date>2014-12-05T14:29:36Z</dc:date>
    <item>
      <title>show if value is present in string</title>
      <link>https://community.qlik.com/t5/QlikView/show-if-value-is-present-in-string/m-p/784962#M277787</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 the following table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="1" class="jiveBorder" height="99" style="border: 1px solid #000000; width: 335px; height: 98px;" width="333"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;Client&lt;/STRONG&gt;&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;Charts&lt;/STRONG&gt;&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;A&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;1,2,3&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;B&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;1,2&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;C&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;1,3&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The string within the charts-field refers to the charts that should be visible per client.&lt;/P&gt;&lt;P&gt;So for chart one i want to have a conditional show if the value 1 is present in the string.&lt;/P&gt;&lt;P&gt;chart two for value 2&lt;/P&gt;&lt;P&gt;chart three for value 3 etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what is the most effective way to identify if a value is part of a larger string?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;your help would be much appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Dec 2014 14:18:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/show-if-value-is-present-in-string/m-p/784962#M277787</guid>
      <dc:creator>pepe2209</dc:creator>
      <dc:date>2014-12-05T14:18:24Z</dc:date>
    </item>
    <item>
      <title>Re: show if value is present in string</title>
      <link>https://community.qlik.com/t5/QlikView/show-if-value-is-present-in-string/m-p/784963#M277788</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Peter,&lt;/P&gt;&lt;P&gt;Index should do the job for you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Index([Your string here],'1')&amp;gt;0 for instance&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope that helps&lt;/P&gt;&lt;P&gt;Joe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Dec 2014 14:22:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/show-if-value-is-present-in-string/m-p/784963#M277788</guid>
      <dc:creator />
      <dc:date>2014-12-05T14:22:04Z</dc:date>
    </item>
    <item>
      <title>Re: show if value is present in string</title>
      <link>https://community.qlik.com/t5/QlikView/show-if-value-is-present-in-string/m-p/784964#M277789</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if ( index ([Charts] , '2' ) &amp;gt; 0 , .......................&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Dec 2014 14:22:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/show-if-value-is-present-in-string/m-p/784964#M277789</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-12-05T14:22:40Z</dc:date>
    </item>
    <item>
      <title>Re: show if value is present in string</title>
      <link>https://community.qlik.com/t5/QlikView/show-if-value-is-present-in-string/m-p/784965#M277790</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Pete&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U can use Match(), Mixmatch() or WildMatch() depending on the way u wanna search your string. All 3 can be found I the help menu.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/ Teis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Dec 2014 14:23:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/show-if-value-is-present-in-string/m-p/784965#M277790</guid>
      <dc:creator />
      <dc:date>2014-12-05T14:23:03Z</dc:date>
    </item>
    <item>
      <title>Re: show if value is present in string</title>
      <link>https://community.qlik.com/t5/QlikView/show-if-value-is-present-in-string/m-p/784966#M277791</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks but it is not the complete solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Because the string can go up to 11,12, etc. So with the following string: 3,8,11 it will still identify '1' in '11'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Dec 2014 14:29:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/show-if-value-is-present-in-string/m-p/784966#M277791</guid>
      <dc:creator>pepe2209</dc:creator>
      <dc:date>2014-12-05T14:29:36Z</dc:date>
    </item>
    <item>
      <title>Re: show if value is present in string</title>
      <link>https://community.qlik.com/t5/QlikView/show-if-value-is-present-in-string/m-p/784967#M277792</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just add in your delimiter to ensure the proper match?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Index([Your string here]&amp;amp;',','1,')&amp;gt;0&lt;/P&gt;&lt;P&gt;Index([Your string here]&amp;amp;',','11,')&amp;gt;0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edit: need to add the comma at the end to make sure last one is picked up&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Dec 2014 14:32:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/show-if-value-is-present-in-string/m-p/784967#M277792</guid>
      <dc:creator />
      <dc:date>2014-12-05T14:32:47Z</dc:date>
    </item>
    <item>
      <title>Re: show if value is present in string</title>
      <link>https://community.qlik.com/t5/QlikView/show-if-value-is-present-in-string/m-p/784968#M277793</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks Joe!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I only needed a comma at the start to or else it will still identify '1,' in '11,'&lt;/P&gt;&lt;P&gt;so now it is: &lt;/P&gt;&lt;P&gt;Index(','&amp;amp;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;[Your string here]&lt;/SPAN&gt;&amp;amp;',', ',1,')&lt;/P&gt;&lt;P&gt;Index(','&amp;amp;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;[Your string here]&lt;/SPAN&gt;&amp;amp;',', ',11,')&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Dec 2014 14:41:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/show-if-value-is-present-in-string/m-p/784968#M277793</guid>
      <dc:creator>pepe2209</dc:creator>
      <dc:date>2014-12-05T14:41:33Z</dc:date>
    </item>
    <item>
      <title>Re: show if value is present in string</title>
      <link>https://community.qlik.com/t5/QlikView/show-if-value-is-present-in-string/m-p/784969#M277794</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try 1s and 0s. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A 111&lt;/P&gt;&lt;P&gt;B 110&lt;/P&gt;&lt;P&gt;C 101&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And then use string functions like mid() to determine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Serhan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Dec 2014 14:42:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/show-if-value-is-present-in-string/m-p/784969#M277794</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-12-05T14:42:16Z</dc:date>
    </item>
    <item>
      <title>Re: show if value is present in string</title>
      <link>https://community.qlik.com/t5/QlikView/show-if-value-is-present-in-string/m-p/784970#M277795</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;good point sorry yea forgot that one!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Dec 2014 14:46:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/show-if-value-is-present-in-string/m-p/784970#M277795</guid>
      <dc:creator />
      <dc:date>2014-12-05T14:46:17Z</dc:date>
    </item>
  </channel>
</rss>

