<?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 with multiple wildcards in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Search-with-multiple-wildcards/m-p/672675#M1063790</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 have given general syntax, You can manipulate as per requirement.&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, 11 Sep 2014 06:20:31 GMT</pubDate>
    <dc:creator>PrashantSangle</dc:creator>
    <dc:date>2014-09-11T06:20:31Z</dc:date>
    <item>
      <title>Search with multiple wildcards</title>
      <link>https://community.qlik.com/t5/QlikView/Search-with-multiple-wildcards/m-p/672671#M1063786</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 have ONE text field where the values it has are something like this:&lt;/P&gt;&lt;P&gt;Name1 Name2 NameN ... LastName1 LastName2&lt;/P&gt;&lt;P&gt;Name1 Name2 NameN ... LastName1 LastName2&lt;/P&gt;&lt;P&gt;Name1 Name2 NameN ... LastName1 LastName2...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In one record, there could be multiple names/lastnames from the same person, but I can not split them because not all the persons has the same amount of lastnames or names...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I do a wildcard search that permit multiple words?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to do something like: *SearchString1* and *SearchString2*&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it possible?&lt;/P&gt;&lt;P&gt;Or I have to split the text string into multiple fields? (Which is no totally useful, cause I don't know if the string i'm searching is in the first, second, or N position in the text..)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Sep 2014 02:45:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Search-with-multiple-wildcards/m-p/672671#M1063786</guid>
      <dc:creator>cristian_av</dc:creator>
      <dc:date>2014-09-11T02:45:47Z</dc:date>
    </item>
    <item>
      <title>Re: Search with multiple wildcards</title>
      <link>https://community.qlik.com/t5/QlikView/Search-with-multiple-wildcards/m-p/672672#M1063787</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes you can search for multiple search strings&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If(Txt Like &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;*SearchString1*&lt;/SPAN&gt; And Txt like &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;*SearchString1*&lt;/SPAN&gt; ,'Contains both strings')&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Sep 2014 05:47:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Search-with-multiple-wildcards/m-p/672672#M1063787</guid>
      <dc:creator>anbu1984</dc:creator>
      <dc:date>2014-09-11T05:47:24Z</dc:date>
    </item>
    <item>
      <title>Re: Search with multiple wildcards</title>
      <link>https://community.qlik.com/t5/QlikView/Search-with-multiple-wildcards/m-p/672673#M1063788</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;Try like this&lt;/P&gt;&lt;P&gt;If(wildmatch(filedname,'*SearchString1*SearchString2*'),fieldname)&lt;/P&gt;&lt;P&gt;Or&lt;/P&gt;&lt;P&gt;If(wildmatch(filedname,'*SearchString1*','*SearchString2*'),fieldname)&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;If(wildmatch(filedname,'*SearchString1') and wildmatch(fieldname,'*SearchString2*'),fieldname)&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, 11 Sep 2014 05:55:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Search-with-multiple-wildcards/m-p/672673#M1063788</guid>
      <dc:creator>PrashantSangle</dc:creator>
      <dc:date>2014-09-11T05:55:35Z</dc:date>
    </item>
    <item>
      <title>Re: Search with multiple wildcards</title>
      <link>https://community.qlik.com/t5/QlikView/Search-with-multiple-wildcards/m-p/672674#M1063789</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;If both search strings are passed as one search string, then we should have second expr as below&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;If(wildmatch(filedname,'*SearchString1*SearchString2*',&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;'*SearchString&lt;STRONG&gt;2&lt;/STRONG&gt;*SearchString&lt;STRONG&gt;1&lt;/STRONG&gt;*'&lt;/SPAN&gt;),fieldname)&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Sep 2014 06:06:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Search-with-multiple-wildcards/m-p/672674#M1063789</guid>
      <dc:creator>anbu1984</dc:creator>
      <dc:date>2014-09-11T06:06:03Z</dc:date>
    </item>
    <item>
      <title>Re: Search with multiple wildcards</title>
      <link>https://community.qlik.com/t5/QlikView/Search-with-multiple-wildcards/m-p/672675#M1063790</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 have given general syntax, You can manipulate as per requirement.&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, 11 Sep 2014 06:20:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Search-with-multiple-wildcards/m-p/672675#M1063790</guid>
      <dc:creator>PrashantSangle</dc:creator>
      <dc:date>2014-09-11T06:20:31Z</dc:date>
    </item>
  </channel>
</rss>

