<?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 wildmatch data from two tables without linking those tables in Connectivity &amp; Data Prep</title>
    <link>https://community.qlik.com/t5/Connectivity-Data-Prep/wildmatch-data-from-two-tables-without-linking-those-tables/m-p/2510740#M14701</link>
    <description>&lt;P&gt;I have two tables: Master and Transaction.&lt;/P&gt;&lt;P&gt;Master has one column named Source, which contains string values, and the name column in the Transaction is made up of string values.&lt;/P&gt;&lt;P&gt;I need to create two new columns, Is Available and Split, based on the columns mentioned earlier. If the value in the Name column fuzzy matches&amp;nbsp;with a value in the&amp;nbsp;Source column, the new column Is_Available should populate&amp;nbsp;Y; otherwise, N. Similarly, if the Source column fuzzy matches&amp;nbsp;the Name column value, the Split column should populate the Source value in it; otherwise, nothing. It has to work like fuzzy lookup.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MahendranCS_0-1742445214452.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/178788iEE328825BB457584/image-size/medium?v=v2&amp;amp;px=400" role="button" title="MahendranCS_0-1742445214452.png" alt="MahendranCS_0-1742445214452.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;For example, in the attached picture, the df value in the Name column is present in the Sdf and Aspdsdf values in the Source column, and hence Y is populated along with the Source values in the new columns.&lt;/P&gt;</description>
    <pubDate>Thu, 20 Mar 2025 04:33:27 GMT</pubDate>
    <dc:creator>MahendranCS</dc:creator>
    <dc:date>2025-03-20T04:33:27Z</dc:date>
    <item>
      <title>wildmatch data from two tables without linking those tables</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/wildmatch-data-from-two-tables-without-linking-those-tables/m-p/2510740#M14701</link>
      <description>&lt;P&gt;I have two tables: Master and Transaction.&lt;/P&gt;&lt;P&gt;Master has one column named Source, which contains string values, and the name column in the Transaction is made up of string values.&lt;/P&gt;&lt;P&gt;I need to create two new columns, Is Available and Split, based on the columns mentioned earlier. If the value in the Name column fuzzy matches&amp;nbsp;with a value in the&amp;nbsp;Source column, the new column Is_Available should populate&amp;nbsp;Y; otherwise, N. Similarly, if the Source column fuzzy matches&amp;nbsp;the Name column value, the Split column should populate the Source value in it; otherwise, nothing. It has to work like fuzzy lookup.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MahendranCS_0-1742445214452.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/178788iEE328825BB457584/image-size/medium?v=v2&amp;amp;px=400" role="button" title="MahendranCS_0-1742445214452.png" alt="MahendranCS_0-1742445214452.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;For example, in the attached picture, the df value in the Name column is present in the Sdf and Aspdsdf values in the Source column, and hence Y is populated along with the Source values in the new columns.&lt;/P&gt;</description>
      <pubDate>Thu, 20 Mar 2025 04:33:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/wildmatch-data-from-two-tables-without-linking-those-tables/m-p/2510740#M14701</guid>
      <dc:creator>MahendranCS</dc:creator>
      <dc:date>2025-03-20T04:33:27Z</dc:date>
    </item>
    <item>
      <title>Re: wildmatch data from two tables without linking those tables</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/wildmatch-data-from-two-tables-without-linking-those-tables/m-p/2510767#M14702</link>
      <description>&lt;P&gt;Perhaps you can make it work using the function &lt;A href="https://help.qlik.com/en-US/sense/Subsystems/Hub/Content/Sense_Hub/Scripting/StringFunctions/LevenshteinDist.htm" target="_self"&gt;LevenshteinDist()&lt;/A&gt;.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Or experiment with &lt;A href="https://help.qlik.com/en-US/sense/Subsystems/Hub/Content/Sense_Hub/Scripting/ConditionalFunctions/mixmatch.htm" target="_self"&gt;mixmatch()&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Thu, 20 Mar 2025 08:28:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/wildmatch-data-from-two-tables-without-linking-those-tables/m-p/2510767#M14702</guid>
      <dc:creator>henrikalmen</dc:creator>
      <dc:date>2025-03-20T08:28:26Z</dc:date>
    </item>
    <item>
      <title>Re: wildmatch data from two tables without linking those tables</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/wildmatch-data-from-two-tables-without-linking-those-tables/m-p/2511276#M14712</link>
      <description>&lt;P&gt;You will probably need multiple steps to get your wanted matching. The first one may be to create a mapping table from the transactions to transfer these information into the master-table, for example:&lt;/P&gt;&lt;P&gt;first: mapping load distinct&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Name,&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;'&amp;lt;&amp;lt;' &amp;amp; Name &amp;amp; '|' &amp;amp; recno() &amp;amp; '&amp;gt;&amp;gt;'&lt;BR /&gt;resident Transactions &lt;STRONG&gt;order by NameLength, Name&lt;/STRONG&gt;;&lt;/P&gt;&lt;P&gt;second: load Source, mapsubstring('m', Source) as Match&lt;BR /&gt;from Master;&lt;/P&gt;&lt;P&gt;Afterwards you could count the delimiter within Match to detect the number of matchings and using textbetween() and subfield() to extract the match-parts and their sources and/or applying n further logic.&lt;/P&gt;</description>
      <pubDate>Mon, 24 Mar 2025 13:02:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/wildmatch-data-from-two-tables-without-linking-those-tables/m-p/2511276#M14712</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2025-03-24T13:02:27Z</dc:date>
    </item>
  </channel>
</rss>

