<?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 Whole Word in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Search-for-Whole-Word/m-p/764875#M1048558</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Wow, weird, I'd expect it to work. Either it's a bug or the search OR operator is not very intuitive...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the meantime, try this as search text instead (make sure there is nothing else in search input field, the equal sign in front is essential):&lt;/P&gt;&lt;P&gt;=WildMatch(CNC_PROCEDURE_DESCRIP,'* esophageal*','* bronchoscopy*')&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 04 Nov 2014 16:15:53 GMT</pubDate>
    <dc:creator>kuba_michalik</dc:creator>
    <dc:date>2014-11-04T16:15:53Z</dc:date>
    <item>
      <title>Search for Whole Word</title>
      <link>https://community.qlik.com/t5/QlikView/Search-for-Whole-Word/m-p/764872#M1048555</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is a really basic question.&amp;nbsp; How do I write out a text search string so that it only selects when the whole word appears, not when it appears as part of another word?&amp;nbsp; For example, I want to select any time esophageal appears, but not "transesophageal". &lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG.png" class="jive-image jiveImage" src="https://community.qlik.com/legacyfs/online/70476_Capture.PNG.png" /&gt;&lt;/P&gt;&lt;P&gt;I can do it by placing a space in front of the word, when I am doing a single search, but as part of a longer string (eg (* esophageal*|*bronchoscopy*), it no longer works&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG.png" class="jive-image" src="https://community.qlik.com/legacyfs/online/70477_Capture.PNG.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG.png" class="jive-image" src="https://community.qlik.com/legacyfs/online/70481_Capture.PNG.png" /&gt;&lt;/P&gt;&lt;P&gt;when placed in the longer string only the bronchoscopy items came through and none of the esophageal...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Nov 2014 15:01:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Search-for-Whole-Word/m-p/764872#M1048555</guid>
      <dc:creator>sarahplymale</dc:creator>
      <dc:date>2014-11-04T15:01:20Z</dc:date>
    </item>
    <item>
      <title>Re: Search for Whole Word</title>
      <link>https://community.qlik.com/t5/QlikView/Search-for-Whole-Word/m-p/764873#M1048556</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try something like:&lt;/P&gt;&lt;P&gt;Assuming your field is called Field1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; If((Field1) like 'esphageal*' or (Field1) like '* esphageal *' , 'esphageal' ,&lt;/P&gt;&lt;P&gt;&amp;nbsp; If((Field1) like 'Bronchoscopy*' or (Field1) like '* Bronchoscopy*' , 'Bronchoscopy' , Field1)) as Field2&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Nov 2014 15:38:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Search-for-Whole-Word/m-p/764873#M1048556</guid>
      <dc:creator />
      <dc:date>2014-11-04T15:38:13Z</dc:date>
    </item>
    <item>
      <title>Re: Search for Whole Word</title>
      <link>https://community.qlik.com/t5/QlikView/Search-for-Whole-Word/m-p/764874#M1048557</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;*CAR* means that you are searching all the string that contains CAR so you find 'MY CAR' or 'CAR RED'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you search for CAR* you will find only CAR RED because you are searching for strings starting with CAR and followed by any other string&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you serach 'CA? COLOUR *' you will find all strings starting with CAA, CAB ... CAZ followed by COLOUR and all other strings after&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Nov 2014 15:53:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Search-for-Whole-Word/m-p/764874#M1048557</guid>
      <dc:creator>alexandros17</dc:creator>
      <dc:date>2014-11-04T15:53:29Z</dc:date>
    </item>
    <item>
      <title>Re: Search for Whole Word</title>
      <link>https://community.qlik.com/t5/QlikView/Search-for-Whole-Word/m-p/764875#M1048558</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Wow, weird, I'd expect it to work. Either it's a bug or the search OR operator is not very intuitive...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the meantime, try this as search text instead (make sure there is nothing else in search input field, the equal sign in front is essential):&lt;/P&gt;&lt;P&gt;=WildMatch(CNC_PROCEDURE_DESCRIP,'* esophageal*','* bronchoscopy*')&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Nov 2014 16:15:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Search-for-Whole-Word/m-p/764875#M1048558</guid>
      <dc:creator>kuba_michalik</dc:creator>
      <dc:date>2014-11-04T16:15:53Z</dc:date>
    </item>
    <item>
      <title>Re: Search for Whole Word</title>
      <link>https://community.qlik.com/t5/QlikView/Search-for-Whole-Word/m-p/764876#M1048559</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The best way is to NOT use the * as the wildcard. Use the space before and after " _&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;esphageal_ | _&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;bronchoscopy_ "&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If this helped you, please mark as Helpful. If it solves your issue, please mark as Answer&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Dhruv&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Nov 2014 02:22:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Search-for-Whole-Word/m-p/764876#M1048559</guid>
      <dc:creator>djsampat</dc:creator>
      <dc:date>2014-11-05T02:22:46Z</dc:date>
    </item>
    <item>
      <title>Re: Search for Whole Word</title>
      <link>https://community.qlik.com/t5/QlikView/Search-for-Whole-Word/m-p/764877#M1048560</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think I figured out how it works - if you are using the OR search syntax ( | ) and want to use wildcard search, quote every search string in double quotes, like this:&lt;/P&gt;&lt;P&gt;("* esophageal*"|"* bronchoscopy*")&lt;/P&gt;&lt;P&gt;If they have no spaces inside, then the double quotes are not necessary.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alternative is to use normal search which should be the best for this case. Just enter:&lt;/P&gt;&lt;P&gt;esophageal bronchoscopy&lt;/P&gt;&lt;P&gt;as the search term - no wildcards, no quotes, parentheses or anything else necessary, only search terms separated by spaces - and it will find all strings where either term appears as a full word. Which is incidentally how &lt;A href="https://community.qlik.com/qlik-users/149288"&gt;Dhruv Sampat&lt;/A&gt; idea which pointed me in right direction works, it just searches for (, |, and ) as additional words &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/wink.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Nov 2014 09:18:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Search-for-Whole-Word/m-p/764877#M1048560</guid>
      <dc:creator>kuba_michalik</dc:creator>
      <dc:date>2014-11-05T09:18:55Z</dc:date>
    </item>
    <item>
      <title>Re: Search for Whole Word</title>
      <link>https://community.qlik.com/t5/QlikView/Search-for-Whole-Word/m-p/764878#M1048561</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;type without *&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Nov 2014 09:46:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Search-for-Whole-Word/m-p/764878#M1048561</guid>
      <dc:creator>SunilChauhan</dc:creator>
      <dc:date>2014-11-05T09:46:04Z</dc:date>
    </item>
    <item>
      <title>Re: Search for Whole Word</title>
      <link>https://community.qlik.com/t5/QlikView/Search-for-Whole-Word/m-p/764879#M1048562</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Methods that worked:&lt;/P&gt;&lt;P&gt;Normal search and just putting the words in (how did I not try that sooner?)&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG.png" class="jive-image jiveImage" src="https://community.qlik.com/legacyfs/online/70662_Capture.PNG.png" /&gt;&lt;/P&gt;&lt;P&gt;Quotation marks and no wildcards.&lt;/P&gt;&lt;P&gt;.&amp;nbsp; &lt;IMG alt="Capture.PNG.png" class="jive-image" src="https://community.qlik.com/legacyfs/online/70659_Capture.PNG.png" /&gt;&lt;/P&gt;&lt;P&gt;The Wildmatch function option also worked.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG.png" class="jive-image" src="https://community.qlik.com/legacyfs/online/70663_Capture.PNG.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Things that didn't work (in addition to the ones in the original question)&lt;/P&gt;&lt;P&gt;Spaces before and after with quotation marks.&lt;BR /&gt;&lt;IMG alt="Capture.PNG.png" class="jive-image" src="https://community.qlik.com/legacyfs/online/70661_Capture.PNG.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks so much for all the help!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Nov 2014 19:41:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Search-for-Whole-Word/m-p/764879#M1048562</guid>
      <dc:creator>sarahplymale</dc:creator>
      <dc:date>2014-11-06T19:41:10Z</dc:date>
    </item>
  </channel>
</rss>

