<?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 Return Like Value in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Return-Like-Value/m-p/1004263#M341180</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I'm a beginner in Qlikview.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suppose I have 2 tables.&lt;/P&gt;&lt;P&gt;1st table have a field with "JUAN DELA CRUZ" and&lt;/P&gt;&lt;P&gt;2nd table have a field with "JUAN DELA CRUZ JR".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want that when I select Juan dela cruz on first table, all values containing Juan Dela Cruz on the 2nd table will also show including those with "JR" in it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How am I supposed to do that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 26 Aug 2015 20:23:05 GMT</pubDate>
    <dc:creator />
    <dc:date>2015-08-26T20:23:05Z</dc:date>
    <item>
      <title>Return Like Value</title>
      <link>https://community.qlik.com/t5/QlikView/Return-Like-Value/m-p/1004263#M341180</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I'm a beginner in Qlikview.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suppose I have 2 tables.&lt;/P&gt;&lt;P&gt;1st table have a field with "JUAN DELA CRUZ" and&lt;/P&gt;&lt;P&gt;2nd table have a field with "JUAN DELA CRUZ JR".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want that when I select Juan dela cruz on first table, all values containing Juan Dela Cruz on the 2nd table will also show including those with "JR" in it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How am I supposed to do that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Aug 2015 20:23:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Return-Like-Value/m-p/1004263#M341180</guid>
      <dc:creator />
      <dc:date>2015-08-26T20:23:05Z</dc:date>
    </item>
    <item>
      <title>Re: Return Like Value</title>
      <link>https://community.qlik.com/t5/QlikView/Return-Like-Value/m-p/1004264#M341181</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;QlikView links table only on exact matches. So you will need to normalize all variations to the same value. You can do this using the MAPPING load feature to translate, for example, &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;"JUAN DELA CRUZ JR" to &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;"JUAN DELA CRUZ".&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are also some functions you can use to clean up anticipated variations, such as capitalization. The Capitalize() function can be useful for that (see Help for more on Capitalize). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You may also consider using string functions like PurgeChar() to remove punctuation such as period and commas. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Lastly, you can create your own script function to create a common key for similar sounding names, using algorithms like soundex. I believe there are some examples here on the Forums.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Aug 2015 21:05:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Return-Like-Value/m-p/1004264#M341181</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2015-08-26T21:05:54Z</dc:date>
    </item>
    <item>
      <title>Re: Return Like Value</title>
      <link>https://community.qlik.com/t5/QlikView/Return-Like-Value/m-p/1004265#M341182</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not sure if these tables are linked in your data model and where you want to show the value of your second table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maybe you can use a field event trigger on your first field (Settings - Document properties - triggers), then create an action Select - Select in field:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Field:&lt;/P&gt;&lt;P&gt;FieldNameInSecondTable&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Search string:&lt;/P&gt;&lt;P&gt;=Only(FieldNameInFirstTable) &amp;amp;'*'&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Aug 2015 21:07:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Return-Like-Value/m-p/1004265#M341182</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2015-08-26T21:07:27Z</dc:date>
    </item>
    <item>
      <title>Re: Return Like Value</title>
      <link>https://community.qlik.com/t5/QlikView/Return-Like-Value/m-p/1004266#M341183</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;A simple and straightforward approach could be like this - maybe it suits your specific needs although it might not be a robust general solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is just a Like matching with Name1 appended with the wildcard * to find matches in Name2:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="2015-08-26 #3.PNG" class="jive-image image-1" src="/legacyfs/online/97108_2015-08-26 #3.PNG" style="height: 473px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Aug 2015 21:15:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Return-Like-Value/m-p/1004266#M341183</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2015-08-26T21:15:01Z</dc:date>
    </item>
  </channel>
</rss>

