<?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: List box set analysis with wildmatch in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/List-box-set-analysis-with-wildmatch/m-p/269963#M101224</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you decide to try the WildMatch approach, it may be easier with a table driven aproach like in the attached example.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think it would be relatively easy to code up a soundex function in the vb module that you could call from the script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 02 Dec 2011 01:38:03 GMT</pubDate>
    <dc:creator>rwunderlich</dc:creator>
    <dc:date>2011-12-02T01:38:03Z</dc:date>
    <item>
      <title>List box set analysis with wildmatch</title>
      <link>https://community.qlik.com/t5/QlikView/List-box-set-analysis-with-wildmatch/m-p/269959#M101220</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; I would like to display in a list box, an imported account list that matches our customer names inside of the existing dashboard.&amp;nbsp; This has to be a wildmatch.&amp;nbsp; Less than 1% of the account name spellings match our customer name spellings.&amp;nbsp; If this cannot be done in a list box, can this be done in a where clause?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Nov 2011 20:24:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/List-box-set-analysis-with-wildmatch/m-p/269959#M101220</guid>
      <dc:creator />
      <dc:date>2011-11-30T20:24:52Z</dc:date>
    </item>
    <item>
      <title>Re: List box set analysis with wildmatch</title>
      <link>https://community.qlik.com/t5/QlikView/List-box-set-analysis-with-wildmatch/m-p/269960#M101221</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Although it will do your load script real slow, this might give you an idea:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code"&gt;&lt;P&gt;Table:&lt;/P&gt;&lt;P&gt;LOAD *&lt;/P&gt;&lt;P&gt;FROM File.xls&lt;/P&gt;&lt;P&gt;WHERE WildMatch(Name, '*John*', '*Peter*', '*Mark*', '*Paul*', 'Mic?ael');&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Using a mapping table and the ApplyMap() function in the WHERE clause might do as well:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code"&gt;&lt;P&gt;NamesToLoadMap:&lt;/P&gt;&lt;P&gt;MAPPING LOAD * INLINE [&lt;/P&gt;&lt;P&gt;Name, OK&lt;/P&gt;&lt;P&gt;John Peters, 1&lt;/P&gt;&lt;P&gt;Mark Walls, 1&lt;/P&gt;&lt;P&gt;Michael Strong, 1&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table:&lt;/P&gt;&lt;P&gt;LOAD *&lt;/P&gt;&lt;P&gt;FROM File.xls&lt;/P&gt;&lt;P&gt;WHERE ApplyMap('NamesToLoadMap', Name, '$$') = 1;&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Miguel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Nov 2011 20:46:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/List-box-set-analysis-with-wildmatch/m-p/269960#M101221</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2011-11-30T20:46:30Z</dc:date>
    </item>
    <item>
      <title>List box set analysis with wildmatch</title>
      <link>https://community.qlik.com/t5/QlikView/List-box-set-analysis-with-wildmatch/m-p/269961#M101222</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Miguel,&amp;nbsp; Thanks for the response.&amp;nbsp; The wildmatch would work, but requires a lot of work.&amp;nbsp; The applymap would only work for the names that are spelled the same, correct?&amp;nbsp; I was looking for a way to do something like a where exists.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Dec 2011 15:12:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/List-box-set-analysis-with-wildmatch/m-p/269961#M101222</guid>
      <dc:creator />
      <dc:date>2011-12-01T15:12:09Z</dc:date>
    </item>
    <item>
      <title>Re: List box set analysis with wildmatch</title>
      <link>https://community.qlik.com/t5/QlikView/List-box-set-analysis-with-wildmatch/m-p/269962#M101223</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That's right, mapping tables will work only for values that are spelled the same, and yes, WildMatch() means a lot of hardcoding. EXISTS() is available in QlikView, but has a different meaning (only values previously loaded). There's nothing like "SOUNDEX" or similar in QlikView.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Miguel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Dec 2011 19:40:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/List-box-set-analysis-with-wildmatch/m-p/269962#M101223</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2011-12-01T19:40:54Z</dc:date>
    </item>
    <item>
      <title>Re: List box set analysis with wildmatch</title>
      <link>https://community.qlik.com/t5/QlikView/List-box-set-analysis-with-wildmatch/m-p/269963#M101224</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you decide to try the WildMatch approach, it may be easier with a table driven aproach like in the attached example.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think it would be relatively easy to code up a soundex function in the vb module that you could call from the script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Dec 2011 01:38:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/List-box-set-analysis-with-wildmatch/m-p/269963#M101224</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2011-12-02T01:38:03Z</dc:date>
    </item>
  </channel>
</rss>

