<?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: Wildmatch search for strings containing 'NAV' in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Wildmatch-search-for-strings-containing-NAV/m-p/491509#M1140926</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would use the Index() function instead.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If( Index( Upper(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;OND_LEVONDBENAMING&lt;/SPAN&gt;), 'NAV') &amp;gt; 0, 1, 0) as &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Navigatie&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HIC&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 06 Sep 2013 06:42:22 GMT</pubDate>
    <dc:creator>hic</dc:creator>
    <dc:date>2013-09-06T06:42:22Z</dc:date>
    <item>
      <title>Wildmatch search for strings containing 'NAV'</title>
      <link>https://community.qlik.com/t5/QlikView/Wildmatch-search-for-strings-containing-NAV/m-p/491508#M1140925</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;Ik am looking for a way to select car part descriptions that contain the word NAV, Nav or nav. I have tried the statements below but stil I am not selecting all the existing posibilities as the screenshot shows. I have also tried the like function but it returned the same unsatisfying result.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Who has a good idee?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If(OND_LEVONDBENAMING Like '*NAV*',1,If(OND_LEVONDBENAMING Like '*Nav*',1,If(OND_LEVONDBENAMING Like '*nav*',1,0))) AS Navigatie,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If(Wildmatch(OND_LEVONDBENAMING,'*NAV*') = 1,1,If(Wildmatch(OND_LEVONDBENAMING,'*Nav*') = 1 ,1,If(Wildmatch (OND_LEVONDBENAMING,'*nav*') = 1,1,0))) AS Navigatie,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then I thought Wildmatch is not looking at captions or not so the statement below should work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If(Wildmatch(OND_LEVONDBENAMING, '*NAV*') = 1,1,0) AS Navigatie,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But it doesn't either.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Michel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Sep 2013 06:36:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Wildmatch-search-for-strings-containing-NAV/m-p/491508#M1140925</guid>
      <dc:creator />
      <dc:date>2013-09-06T06:36:27Z</dc:date>
    </item>
    <item>
      <title>Re: Wildmatch search for strings containing 'NAV'</title>
      <link>https://community.qlik.com/t5/QlikView/Wildmatch-search-for-strings-containing-NAV/m-p/491509#M1140926</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would use the Index() function instead.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If( Index( Upper(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;OND_LEVONDBENAMING&lt;/SPAN&gt;), 'NAV') &amp;gt; 0, 1, 0) as &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Navigatie&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HIC&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Sep 2013 06:42:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Wildmatch-search-for-strings-containing-NAV/m-p/491509#M1140926</guid>
      <dc:creator>hic</dc:creator>
      <dc:date>2013-09-06T06:42:22Z</dc:date>
    </item>
    <item>
      <title>Re: Wildmatch search for strings containing 'NAV'</title>
      <link>https://community.qlik.com/t5/QlikView/Wildmatch-search-for-strings-containing-NAV/m-p/491510#M1140927</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Henric,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unfortunately the same result. Though the upper function is simple and defenately helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In our old hyperion software I get the right results with a Contain function on NAV Nav an nav.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanx for the reply though.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Sep 2013 07:07:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Wildmatch-search-for-strings-containing-NAV/m-p/491510#M1140927</guid>
      <dc:creator />
      <dc:date>2013-09-06T07:07:02Z</dc:date>
    </item>
    <item>
      <title>Re: Wildmatch search for strings containing 'NAV'</title>
      <link>https://community.qlik.com/t5/QlikView/Wildmatch-search-for-strings-containing-NAV/m-p/491511#M1140928</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think I solved the problem, just let me reload and check.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Problem solved, there was another statement modifying the OND_LEVONDBENAMING field after this one and so it added data from another discription field in it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have put it higher up in the load script and now it works fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanx Henric anyway for letting rethink and pushing me into finding the problem elsewhere.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Michel&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Congrats on your 5000pts.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Sep 2013 07:13:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Wildmatch-search-for-strings-containing-NAV/m-p/491511#M1140928</guid>
      <dc:creator />
      <dc:date>2013-09-06T07:13:27Z</dc:date>
    </item>
  </channel>
</rss>

