<?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: Group by a column based on fuzzy match in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Group-by-a-column-based-on-fuzzy-match/m-p/1266074#M851613</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the reply&lt;/P&gt;&lt;P&gt;The suggestion helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Additionally, if there are data variations / spelling mismatch (within Subfield)....is there a way to handle by means of fuzzy match within the expression ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;example data for F1&lt;/P&gt;&lt;P&gt;BOTICELLI&lt;/P&gt;&lt;P&gt;BOTTICELLI Inc&lt;/P&gt;&lt;P&gt;BOTICELI Brands&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 25 Feb 2017 06:41:50 GMT</pubDate>
    <dc:creator>umashankarus</dc:creator>
    <dc:date>2017-02-25T06:41:50Z</dc:date>
    <item>
      <title>Group by a column based on fuzzy match</title>
      <link>https://community.qlik.com/t5/QlikView/Group-by-a-column-based-on-fuzzy-match/m-p/1266070#M851609</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts&lt;/P&gt;&lt;P&gt;I have a table with several data columns.&lt;/P&gt;&lt;P&gt;And one of the field is a string type. (This field is feed from a data source where free form description allowed)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SOURCE_TABLE:&lt;/P&gt;&lt;P&gt;F1, F2, F3&lt;/P&gt;&lt;P&gt;ABC , 100, $20000&lt;/P&gt;&lt;P&gt;abc Inc., 220, $25000&lt;/P&gt;&lt;P&gt;Abc Plastics, 230, $23000&lt;/P&gt;&lt;P&gt;3M, 100, 12000&lt;/P&gt;&lt;P&gt;3M Care, 175, 6500&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And the real data contains 100s of variations of F1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this example, I want the resultant table with F1 and F3, grouped by F1&lt;/P&gt;&lt;P&gt;RESULTANT_TABLE:&lt;/P&gt;&lt;P&gt;F1, F2&lt;/P&gt;&lt;P&gt;ABC, $68000&lt;/P&gt;&lt;P&gt;3M, $18500&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can the resultant F1 be stored in a mapping table&lt;/P&gt;&lt;P&gt;and&lt;/P&gt;&lt;P&gt;add resultant F1 as a column to the source table through apply map based on 'fuzzy' match ?&lt;/P&gt;&lt;P&gt;If so, can you pl share sample script ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also pl suggest other options to achieve this ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Umashankar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Group-by-a-column-based-on-fuzzy-match/m-p/1266070#M851609</guid>
      <dc:creator>umashankarus</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Group by a column based on fuzzy match</title>
      <link>https://community.qlik.com/t5/QlikView/Group-by-a-column-based-on-fuzzy-match/m-p/1266071#M851610</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You have to create a lookup table for values in the F1 and the value it should take in the resultant table. Can&amp;nbsp; use Applymap and create a table and group by. &lt;/P&gt;&lt;P&gt;&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 * inline [&lt;/P&gt;&lt;P&gt;F1, F2, F3&lt;/P&gt;&lt;P&gt;ABC , 100, $20000&lt;/P&gt;&lt;P&gt;abc Inc., 220, $25000&lt;/P&gt;&lt;P&gt;Abc Plastics, 230, $23000&lt;/P&gt;&lt;P&gt;3M, 100, 12000&lt;/P&gt;&lt;P&gt;3M Care, 175, 6500];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//Creating a mapping table&lt;/P&gt;&lt;P&gt;lookup:&lt;/P&gt;&lt;P&gt;Mapping&lt;/P&gt;&lt;P&gt;load * inline&lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;F1,F1_value&lt;/P&gt;&lt;P&gt;ABC,ABC&lt;/P&gt;&lt;P&gt;abc Inc.,ABC&lt;/P&gt;&lt;P&gt;Abc Plastics,ABC&lt;/P&gt;&lt;P&gt;3M,3M&lt;/P&gt;&lt;P&gt;3M Care,3M];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FinalTable:&lt;/P&gt;&lt;P&gt;LEFT join(TABLE)&lt;/P&gt;&lt;P&gt;load F1,ApplyMap('lookup',F1) AS RES_F1 Resident TABLE;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lEFT JOIN(TABLE)&lt;/P&gt;&lt;P&gt;LOAD RES_F1,SUM(F3)&lt;/P&gt;&lt;P&gt;Resident TABLE&lt;/P&gt;&lt;P&gt;GROUP BY RES_F1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&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>Sat, 25 Feb 2017 04:26:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Group-by-a-column-based-on-fuzzy-match/m-p/1266071#M851610</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-02-25T04:26:09Z</dc:date>
    </item>
    <item>
      <title>Re: Group by a column based on fuzzy match</title>
      <link>https://community.qlik.com/t5/QlikView/Group-by-a-column-based-on-fuzzy-match/m-p/1266072#M851611</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Umashankar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As an variant&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//load the source table&lt;/P&gt;&lt;P&gt;TABLE:&lt;/P&gt;&lt;P&gt;LOAD * Inline [&lt;/P&gt;&lt;P&gt;F1, F2, F3&lt;/P&gt;&lt;P&gt;ABC , 100, $20000&lt;/P&gt;&lt;P&gt;abc Inc., 220, $25000&lt;/P&gt;&lt;P&gt;Abc Plastics, 230, $23000&lt;/P&gt;&lt;P&gt;3M, 100, 12000&lt;/P&gt;&lt;P&gt;3M Care, 175, 6500];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NoConcatenate&lt;/P&gt;&lt;P&gt;SOURCE_TABLE:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;F1,&lt;/P&gt;&lt;P&gt;Lower(SubField(F1, ' ', 1)) as F1Key, //create key&lt;/P&gt;&lt;P&gt;F2, &lt;/P&gt;&lt;P&gt;Money#(F3, '$#') as F3&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //convert money format&lt;/P&gt;&lt;P&gt;Resident TABLE;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Left Join&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;F1Key,&lt;/P&gt;&lt;P&gt;Money(Sum(F3), '$ #,##') as SumF3&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //convert money format&lt;/P&gt;&lt;P&gt;Resident SOURCE_TABLE&lt;/P&gt;&lt;P&gt;Group By F1Key;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DROP Table TABLE;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//Then you can remove the unneeded fields from the resulting table&lt;/P&gt;&lt;P&gt;//DROP Fields ... From SOURCE_TABLE;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Result&lt;/P&gt;&lt;P&gt;&lt;IMG alt="1.jpg" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/154434_1.jpg" style="height: 307px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Andrey&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 25 Feb 2017 05:53:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Group-by-a-column-based-on-fuzzy-match/m-p/1266072#M851611</guid>
      <dc:creator>ahaahaaha</dc:creator>
      <dc:date>2017-02-25T05:53:07Z</dc:date>
    </item>
    <item>
      <title>Re: Group by a column based on fuzzy match</title>
      <link>https://community.qlik.com/t5/QlikView/Group-by-a-column-based-on-fuzzy-match/m-p/1266073#M851612</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the reply&lt;/P&gt;&lt;P&gt;Since F1 variations are more,&amp;nbsp; we would need &lt;SPAN style="font-size: 10pt;"&gt;dynamic expression to handle&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 25 Feb 2017 06:34:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Group-by-a-column-based-on-fuzzy-match/m-p/1266073#M851612</guid>
      <dc:creator>umashankarus</dc:creator>
      <dc:date>2017-02-25T06:34:58Z</dc:date>
    </item>
    <item>
      <title>Re: Group by a column based on fuzzy match</title>
      <link>https://community.qlik.com/t5/QlikView/Group-by-a-column-based-on-fuzzy-match/m-p/1266074#M851613</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the reply&lt;/P&gt;&lt;P&gt;The suggestion helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Additionally, if there are data variations / spelling mismatch (within Subfield)....is there a way to handle by means of fuzzy match within the expression ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;example data for F1&lt;/P&gt;&lt;P&gt;BOTICELLI&lt;/P&gt;&lt;P&gt;BOTTICELLI Inc&lt;/P&gt;&lt;P&gt;BOTICELI Brands&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 25 Feb 2017 06:41:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Group-by-a-column-based-on-fuzzy-match/m-p/1266074#M851613</guid>
      <dc:creator>umashankarus</dc:creator>
      <dc:date>2017-02-25T06:41:50Z</dc:date>
    </item>
    <item>
      <title>Re: Group by a column based on fuzzy match</title>
      <link>https://community.qlik.com/t5/QlikView/Group-by-a-column-based-on-fuzzy-match/m-p/1266075#M851614</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For this it is necessary to apply a mapping table. Look at this, please here&amp;nbsp; &lt;A href="http://help.qlik.com/en-US/qlikview/12.1/Subsystems/Client/Content/Scripting/ScriptPrefixes/Mapping.htm" style="font-size: 10pt;" title="http://help.qlik.com/en-US/qlikview/12.1/Subsystems/Client/Content/Scripting/ScriptPrefixes/Mapping.htm"&gt;Mapping ‒ QlikView&lt;/A&gt;‌&lt;/P&gt;&lt;P&gt;and &lt;A href="http://help.qlik.com/en-US/qlikview/12.1/Subsystems/Client/Content/Scripting/MappingFunctions/ApplyMap.htm" title="http://help.qlik.com/en-US/qlikview/12.1/Subsystems/Client/Content/Scripting/MappingFunctions/ApplyMap.htm"&gt;ApplyMap ‒ QlikView&lt;/A&gt;‌&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my &lt;SPAN style="font-size: 13.3333px;"&gt;view&lt;/SPAN&gt; try to identify errors in the words automatically is not very reasonable. If two words differ by one or more letters and have different meanings - is not always clear, it is a mistake or not. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Andrey&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 25 Feb 2017 07:48:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Group-by-a-column-based-on-fuzzy-match/m-p/1266075#M851614</guid>
      <dc:creator>ahaahaaha</dc:creator>
      <dc:date>2017-02-25T07:48:59Z</dc:date>
    </item>
    <item>
      <title>Re: Group by a column based on fuzzy match</title>
      <link>https://community.qlik.com/t5/QlikView/Group-by-a-column-based-on-fuzzy-match/m-p/1266076#M851615</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think . Unless you have a solid lookup table, we cant always trust the numbers you get. Its hard to find out each case where data anomaly occurs and use some function to group it. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 25 Feb 2017 15:38:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Group-by-a-column-based-on-fuzzy-match/m-p/1266076#M851615</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-02-25T15:38:21Z</dc:date>
    </item>
    <item>
      <title>Re: Group by a column based on fuzzy match</title>
      <link>https://community.qlik.com/t5/QlikView/Group-by-a-column-based-on-fuzzy-match/m-p/1266077#M851616</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You still want to automatically link&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;BOTICELLI&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;BOTTICELLI Inc&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;BOTICELI Brands&amp;nbsp; in a single value?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 25 Feb 2017 16:38:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Group-by-a-column-based-on-fuzzy-match/m-p/1266077#M851616</guid>
      <dc:creator>ahaahaaha</dc:creator>
      <dc:date>2017-02-25T16:38:36Z</dc:date>
    </item>
    <item>
      <title>Re: Group by a column based on fuzzy match</title>
      <link>https://community.qlik.com/t5/QlikView/Group-by-a-column-based-on-fuzzy-match/m-p/1266078#M851617</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, I would like to link in a single value&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 25 Feb 2017 20:15:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Group-by-a-column-based-on-fuzzy-match/m-p/1266078#M851617</guid>
      <dc:creator>umashankarus</dc:creator>
      <dc:date>2017-02-25T20:15:05Z</dc:date>
    </item>
    <item>
      <title>Re: Group by a column based on fuzzy match</title>
      <link>https://community.qlik.com/t5/QlikView/Group-by-a-column-based-on-fuzzy-match/m-p/1266079#M851618</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;maybe this helps:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="QlikCommunity_Thread_215087_Pic2.JPG" class="jive-image image-2" height="225" src="https://community.qlik.com/legacyfs/online/154469_QlikCommunity_Thread_215087_Pic2.JPG" width="337" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/thread/215087"&gt;Sorting similar names for display&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/message/593969"&gt;Fuzzy Matching/Joining&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/thread/115800"&gt;Levenshtein Algorithm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/message/1034656"&gt;Re: Fuzzy/Close Name Match&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 26 Feb 2017 00:18:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Group-by-a-column-based-on-fuzzy-match/m-p/1266079#M851618</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2017-02-26T00:18:22Z</dc:date>
    </item>
    <item>
      <title>Re: Group by a column based on fuzzy match</title>
      <link>https://community.qlik.com/t5/QlikView/Group-by-a-column-based-on-fuzzy-match/m-p/1266080#M851619</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Excellent collection of links on the subject provided Marco below&amp;nbsp; . I do not know the content of your task as a whole. In my opinion only the following should be considered.&lt;/P&gt;&lt;P&gt;Any language is redundant. Restore the meaning of the text by fragments of words and even individual words possible.&lt;/P&gt;&lt;P&gt;However, when it comes to the key fields, it seems to me, the use of fuzzy generalization method is not correct.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Andrey&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 26 Feb 2017 05:40:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Group-by-a-column-based-on-fuzzy-match/m-p/1266080#M851619</guid>
      <dc:creator>ahaahaaha</dc:creator>
      <dc:date>2017-02-26T05:40:05Z</dc:date>
    </item>
    <item>
      <title>Re: Group by a column based on fuzzy match</title>
      <link>https://community.qlik.com/t5/QlikView/Group-by-a-column-based-on-fuzzy-match/m-p/1266081#M851620</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 26 Feb 2017 06:21:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Group-by-a-column-based-on-fuzzy-match/m-p/1266081#M851620</guid>
      <dc:creator>umashankarus</dc:creator>
      <dc:date>2017-02-26T06:21:16Z</dc:date>
    </item>
    <item>
      <title>Re: Group by a column based on fuzzy match</title>
      <link>https://community.qlik.com/t5/QlikView/Group-by-a-column-based-on-fuzzy-match/m-p/1266082#M851621</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Andrey&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 26 Feb 2017 06:21:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Group-by-a-column-based-on-fuzzy-match/m-p/1266082#M851621</guid>
      <dc:creator>umashankarus</dc:creator>
      <dc:date>2017-02-26T06:21:41Z</dc:date>
    </item>
    <item>
      <title>Re: Group by a column based on fuzzy match</title>
      <link>https://community.qlik.com/t5/QlikView/Group-by-a-column-based-on-fuzzy-match/m-p/1266083#M851622</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you're welcome&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marco&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/docs/DOC-14806"&gt;Qlik Community Tip: Marking Replies as Correct or Helpful&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 26 Feb 2017 17:56:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Group-by-a-column-based-on-fuzzy-match/m-p/1266083#M851622</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2017-02-26T17:56:35Z</dc:date>
    </item>
  </channel>
</rss>

