<?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 Fuzzy Lookup in Qliksense in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Fuzzy-Lookup-in-Qliksense/m-p/1952884#M78574</link>
    <description>&lt;P&gt;Hi ,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We have a customer data and customer name is stored as below format, I would like to use fuzzy logic and derive a single line for that customer,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Input data&lt;/P&gt;
&lt;P&gt;Thomas Craig(Premium)&lt;/P&gt;
&lt;P&gt;Thomas Craig&lt;/P&gt;
&lt;P&gt;T.Craig&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Required output is Thomas Craig.&lt;/P&gt;</description>
    <pubDate>Thu, 07 Jul 2022 13:47:16 GMT</pubDate>
    <dc:creator>kvr9</dc:creator>
    <dc:date>2022-07-07T13:47:16Z</dc:date>
    <item>
      <title>Fuzzy Lookup in Qliksense</title>
      <link>https://community.qlik.com/t5/App-Development/Fuzzy-Lookup-in-Qliksense/m-p/1952884#M78574</link>
      <description>&lt;P&gt;Hi ,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We have a customer data and customer name is stored as below format, I would like to use fuzzy logic and derive a single line for that customer,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Input data&lt;/P&gt;
&lt;P&gt;Thomas Craig(Premium)&lt;/P&gt;
&lt;P&gt;Thomas Craig&lt;/P&gt;
&lt;P&gt;T.Craig&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Required output is Thomas Craig.&lt;/P&gt;</description>
      <pubDate>Thu, 07 Jul 2022 13:47:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Fuzzy-Lookup-in-Qliksense/m-p/1952884#M78574</guid>
      <dc:creator>kvr9</dc:creator>
      <dc:date>2022-07-07T13:47:16Z</dc:date>
    </item>
    <item>
      <title>Re: Fuzzy Lookup in Qliksense</title>
      <link>https://community.qlik.com/t5/App-Development/Fuzzy-Lookup-in-Qliksense/m-p/1952999#M78589</link>
      <description>&lt;P&gt;One solution is to build a mapping table of the exceptions mapped to the final name. You have to maintain this by hand, but you only have to include the exceptions, or potential exceptions. For example:&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;CompanyMap:&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;MAPPING&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;LOAD * INLINE [&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;from, to&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;I.B.M, IBM&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;Intl Bus Mach, IBM&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;Msoft, Microsoft&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;MS, Microsoft&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;]&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;MAP Company USING CompanyMap;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;Companies:&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;LOAD Company&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;INLINE [&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;Company&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;IBM&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;I.B.M&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;Microsoft&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;Msoft&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;MS&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;ms&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;Energy Specialists&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;]&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;Another option is to use MapSubstring to look for partial names, but that doesn't cover all situations well. e.g T.Craig.&lt;/P&gt;
&lt;P&gt;-Rob&lt;BR /&gt;&lt;A href="http://www.easyqlik.com" target="_blank"&gt;http://www.easyqlik.com&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://masterssummit.com" target="_blank"&gt;http://masterssummit.com&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://qlikviewcookbook.com" target="_blank"&gt;http://qlikviewcookbook.com&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Jul 2022 16:56:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Fuzzy-Lookup-in-Qliksense/m-p/1952999#M78589</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2022-07-07T16:56:35Z</dc:date>
    </item>
  </channel>
</rss>

