<?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: Search for String in script in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Search-for-String-in-script/m-p/1288192#M858721</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use wildmatch in the script as well which is essentially a WHERE LIKE clause&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 03 Feb 2017 07:32:06 GMT</pubDate>
    <dc:creator>adamdavi3s</dc:creator>
    <dc:date>2017-02-03T07:32:06Z</dc:date>
    <item>
      <title>Search for String in script</title>
      <link>https://community.qlik.com/t5/QlikView/Search-for-String-in-script/m-p/1288188#M858717</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All&lt;/P&gt;&lt;P&gt;I have a filed named 'Type' in QlikView which contains values like Abc, Abcs, Abdr, bef, ltv etc..Now that I need to write in script to return expression values such that where type contains Ab&lt;/P&gt;&lt;P&gt;I tried like where Type=''Ab*' but not returning any values.Please help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Search-for-String-in-script/m-p/1288188#M858717</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Search for String in script</title>
      <link>https://community.qlik.com/t5/QlikView/Search-for-String-in-script/m-p/1288189#M858718</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi use the wildmatch function to help you out:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(wildmatch(Type,'AB*'),value,0)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Please remember to mark this as helpful or the correct answer if I have helped you or answered your question.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;This will help users identify the answers should they come across this thread in the future.&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Feb 2017 07:27:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Search-for-String-in-script/m-p/1288189#M858718</guid>
      <dc:creator>adamdavi3s</dc:creator>
      <dc:date>2017-02-03T07:27:03Z</dc:date>
    </item>
    <item>
      <title>Re: Search for String in script</title>
      <link>https://community.qlik.com/t5/QlikView/Search-for-String-in-script/m-p/1288190#M858719</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can I have something like using where clause so that I can restrict values from script itself&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Feb 2017 07:29:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Search-for-String-in-script/m-p/1288190#M858719</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-02-03T07:29:41Z</dc:date>
    </item>
    <item>
      <title>Re: Search for String in script</title>
      <link>https://community.qlik.com/t5/QlikView/Search-for-String-in-script/m-p/1288191#M858720</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Try with&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;LOAD * INLINE [&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Type&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Abc&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Abcs&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Abdr&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;bef&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;ltv&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;]&lt;STRONG&gt;Where wildmatch(Type,'*Ab*');&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Feb 2017 07:31:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Search-for-String-in-script/m-p/1288191#M858720</guid>
      <dc:creator>surendraj</dc:creator>
      <dc:date>2017-02-03T07:31:56Z</dc:date>
    </item>
    <item>
      <title>Re: Search for String in script</title>
      <link>https://community.qlik.com/t5/QlikView/Search-for-String-in-script/m-p/1288192#M858721</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use wildmatch in the script as well which is essentially a WHERE LIKE clause&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Feb 2017 07:32:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Search-for-String-in-script/m-p/1288192#M858721</guid>
      <dc:creator>adamdavi3s</dc:creator>
      <dc:date>2017-02-03T07:32:06Z</dc:date>
    </item>
    <item>
      <title>Re: Search for String in script</title>
      <link>https://community.qlik.com/t5/QlikView/Search-for-String-in-script/m-p/1288193#M858722</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;u can try wildmatch here&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Code"&gt;&lt;EM&gt;wildmatch( M, 'Ab*','Ab?','ab')&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Feb 2017 07:33:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Search-for-String-in-script/m-p/1288193#M858722</guid>
      <dc:creator>Chanty4u</dc:creator>
      <dc:date>2017-02-03T07:33:16Z</dc:date>
    </item>
    <item>
      <title>Re: Search for String in script</title>
      <link>https://community.qlik.com/t5/QlikView/Search-for-String-in-script/m-p/1288194#M858723</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Let vCheck='Ab*';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for text object:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=if(FieldIndex('Field',vCheck)&amp;gt;0, True(),False())&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Feb 2017 07:35:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Search-for-String-in-script/m-p/1288194#M858723</guid>
      <dc:creator>Chanty4u</dc:creator>
      <dc:date>2017-02-03T07:35:20Z</dc:date>
    </item>
    <item>
      <title>Re: Search for String in script</title>
      <link>https://community.qlik.com/t5/QlikView/Search-for-String-in-script/m-p/1288195#M858724</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Why would you do this when wildmatch will return a true / false anyway and not require an if statement?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Feb 2017 07:37:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Search-for-String-in-script/m-p/1288195#M858724</guid>
      <dc:creator>adamdavi3s</dc:creator>
      <dc:date>2017-02-03T07:37:06Z</dc:date>
    </item>
    <item>
      <title>Re: Search for String in script</title>
      <link>https://community.qlik.com/t5/QlikView/Search-for-String-in-script/m-p/1288196#M858725</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you very much it helped&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Feb 2017 07:37:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Search-for-String-in-script/m-p/1288196#M858725</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-02-03T07:37:16Z</dc:date>
    </item>
    <item>
      <title>Re: Search for String in script</title>
      <link>https://community.qlik.com/t5/QlikView/Search-for-String-in-script/m-p/1288197#M858726</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes but if he can check in front end also he can get to know .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Feb 2017 07:38:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Search-for-String-in-script/m-p/1288197#M858726</guid>
      <dc:creator>Chanty4u</dc:creator>
      <dc:date>2017-02-03T07:38:56Z</dc:date>
    </item>
    <item>
      <title>Re: Search for String in script</title>
      <link>https://community.qlik.com/t5/QlikView/Search-for-String-in-script/m-p/1288198#M858727</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Now that I want to filter 3 or more fields which have Ab or b or f,how can i achieve this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 04 Feb 2017 11:47:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Search-for-String-in-script/m-p/1288198#M858727</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-02-04T11:47:18Z</dc:date>
    </item>
    <item>
      <title>Re: Search for String in script</title>
      <link>https://community.qlik.com/t5/QlikView/Search-for-String-in-script/m-p/1288199#M858728</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes you can...&lt;/P&gt;&lt;P&gt;In where clause&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Where wildmatch(Type,'*Ab*','*&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;b*&lt;/SPAN&gt;','*&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;f*&lt;/SPAN&gt;');&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;This will filter the values which contain &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt; &lt;STRONG&gt;Ab or b or f.&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 04 Feb 2017 15:38:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Search-for-String-in-script/m-p/1288199#M858728</guid>
      <dc:creator>surendraj</dc:creator>
      <dc:date>2017-02-04T15:38:29Z</dc:date>
    </item>
  </channel>
</rss>

