<?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 Match or Similar? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Fuzzy-Match-or-Similar/m-p/856438#M470295</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Lets say I have 2 cols, I want to see if any word in col2 appear in col1?&amp;nbsp; If a word matches in both then flag it etc.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 27 May 2015 08:08:11 GMT</pubDate>
    <dc:creator>dmac1971</dc:creator>
    <dc:date>2015-05-27T08:08:11Z</dc:date>
    <item>
      <title>Fuzzy Match or Similar?</title>
      <link>https://community.qlik.com/t5/QlikView/Fuzzy-Match-or-Similar/m-p/856438#M470295</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Lets say I have 2 cols, I want to see if any word in col2 appear in col1?&amp;nbsp; If a word matches in both then flag it etc.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 May 2015 08:08:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Fuzzy-Match-or-Similar/m-p/856438#M470295</guid>
      <dc:creator>dmac1971</dc:creator>
      <dc:date>2015-05-27T08:08:11Z</dc:date>
    </item>
    <item>
      <title>Re: Fuzzy Match or Similar?</title>
      <link>https://community.qlik.com/t5/QlikView/Fuzzy-Match-or-Similar/m-p/856439#M470296</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Find the attached application and let me know whether this is what you want.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 May 2015 08:16:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Fuzzy-Match-or-Similar/m-p/856439#M470296</guid>
      <dc:creator>Siva_Sankar</dc:creator>
      <dc:date>2015-05-27T08:16:26Z</dc:date>
    </item>
    <item>
      <title>Re: Fuzzy Match or Similar?</title>
      <link>https://community.qlik.com/t5/QlikView/Fuzzy-Match-or-Similar/m-p/856440#M470297</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not really I'm afraid.&amp;nbsp; Both cols contain a number of words within a text string, if it was single chars or single words in both that would be fairly easy to do.&amp;nbsp; Thanks though!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 May 2015 08:21:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Fuzzy-Match-or-Similar/m-p/856440#M470297</guid>
      <dc:creator>dmac1971</dc:creator>
      <dc:date>2015-05-27T08:21:26Z</dc:date>
    </item>
    <item>
      <title>Re: Fuzzy Match or Similar?</title>
      <link>https://community.qlik.com/t5/QlikView/Fuzzy-Match-or-Similar/m-p/856441#M470298</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;&lt;/P&gt;&lt;P&gt;//--- original table&lt;/P&gt;&lt;P&gt;t1:&lt;/P&gt;&lt;P&gt;LOAD * Inline [&lt;/P&gt;&lt;P&gt;id, t1, t2&lt;/P&gt;&lt;P&gt;1, John Hello, Max Bye John&lt;/P&gt;&lt;P&gt;2, Frank, Piter&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//--- separate first col by words&lt;/P&gt;&lt;P&gt;t2:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;id,&lt;/P&gt;&lt;P&gt;SubField(t1,' ') as s1&lt;/P&gt;&lt;P&gt;Resident t1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//--- separate second col by words&lt;/P&gt;&lt;P&gt;t3:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;id,&lt;/P&gt;&lt;P&gt;SubField(t2,' ') as s2&lt;/P&gt;&lt;P&gt;Resident t1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//--- find out the same words&lt;/P&gt;&lt;P&gt;Inner Join (t2)&lt;/P&gt;&lt;P&gt;load&lt;/P&gt;&lt;P&gt;&amp;nbsp; id, s2 as s1&lt;/P&gt;&lt;P&gt;Resident t3;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DROP Table t3;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//--- if col1 and col2 have more then 1 same word - leave only one id per row&lt;/P&gt;&lt;P&gt;t3:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp; Distinct id,&lt;/P&gt;&lt;P&gt;&amp;nbsp; 1 as flag&lt;/P&gt;&lt;P&gt;Resident t2;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DROP table t2;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//--- add flag to original table&lt;/P&gt;&lt;P&gt;Left Join (t1)&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp; id, flag&lt;/P&gt;&lt;P&gt;Resident t3;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DROP Table t3;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 May 2015 08:30:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Fuzzy-Match-or-Similar/m-p/856441#M470298</guid>
      <dc:creator>pokassov</dc:creator>
      <dc:date>2015-05-27T08:30:20Z</dc:date>
    </item>
    <item>
      <title>Re: Fuzzy Match or Similar?</title>
      <link>https://community.qlik.com/t5/QlikView/Fuzzy-Match-or-Similar/m-p/856442#M470299</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Used the Subfield method and then marked each record as Y/N match.&amp;nbsp; Thanks.!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 May 2015 13:59:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Fuzzy-Match-or-Similar/m-p/856442#M470299</guid>
      <dc:creator>dmac1971</dc:creator>
      <dc:date>2015-05-27T13:59:43Z</dc:date>
    </item>
  </channel>
</rss>

