<?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 look up in 2 tables in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/look-up-in-2-tables/m-p/858882#M300769</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to lookup the values between 2 tables, the lookup value in table1 has only part of the value same as table 2, like below: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table1:&lt;/P&gt;&lt;P&gt;Load * inline [&lt;/P&gt;&lt;P&gt;Name1,ID&lt;/P&gt;&lt;P&gt;Chen Tai Man, 12345&lt;/P&gt;&lt;P&gt;Chan Wai, 23456&lt;/P&gt;&lt;P&gt;Wong Kai, 99999&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table2:&lt;/P&gt;&lt;P&gt;Load * inline [&lt;/P&gt;&lt;P&gt;Name2,Status&lt;/P&gt;&lt;P&gt;Tai Man, A&lt;/P&gt;&lt;P&gt;Wai, B&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to return the value in table1, for example field ID, when they find a match case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it possible to do it in Qlik? Thanks for your help first!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 19 Jun 2015 02:26:23 GMT</pubDate>
    <dc:creator />
    <dc:date>2015-06-19T02:26:23Z</dc:date>
    <item>
      <title>look up in 2 tables</title>
      <link>https://community.qlik.com/t5/QlikView/look-up-in-2-tables/m-p/858882#M300769</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to lookup the values between 2 tables, the lookup value in table1 has only part of the value same as table 2, like below: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table1:&lt;/P&gt;&lt;P&gt;Load * inline [&lt;/P&gt;&lt;P&gt;Name1,ID&lt;/P&gt;&lt;P&gt;Chen Tai Man, 12345&lt;/P&gt;&lt;P&gt;Chan Wai, 23456&lt;/P&gt;&lt;P&gt;Wong Kai, 99999&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table2:&lt;/P&gt;&lt;P&gt;Load * inline [&lt;/P&gt;&lt;P&gt;Name2,Status&lt;/P&gt;&lt;P&gt;Tai Man, A&lt;/P&gt;&lt;P&gt;Wai, B&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to return the value in table1, for example field ID, when they find a match case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it possible to do it in Qlik? Thanks for your help first!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jun 2015 02:26:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/look-up-in-2-tables/m-p/858882#M300769</guid>
      <dc:creator />
      <dc:date>2015-06-19T02:26:23Z</dc:date>
    </item>
    <item>
      <title>Re: look up in 2 tables</title>
      <link>https://community.qlik.com/t5/QlikView/look-up-in-2-tables/m-p/858883#M300770</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;May be try like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table2:&lt;/P&gt;&lt;P&gt;Load * inline&lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;Name2,Status&lt;/P&gt;&lt;P&gt;Tai Man, A&lt;/P&gt;&lt;P&gt;Wai, B&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Join&lt;/P&gt;&lt;P&gt;Load * inline&lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;Name1,ID&lt;/P&gt;&lt;P&gt;Chen Tai Man, 12345&lt;/P&gt;&lt;P&gt;Chan Wai, 23456&lt;/P&gt;&lt;P&gt;Wong Kai, 99999&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FinalTemp:&lt;/P&gt;&lt;P&gt;LOAD *, If(WildMatch(Name1, '*'&amp;amp;Name2&amp;amp;'*'),1,0) AS Flag Resident Table2;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NoConcatenate&lt;/P&gt;&lt;P&gt;Final:&lt;/P&gt;&lt;P&gt;LOAD * Resident FinalTemp Where Flag = 1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DROP Tables Table2, FinalTemp;&lt;/P&gt;&lt;P&gt;EXIT Script;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jun 2015 04:49:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/look-up-in-2-tables/m-p/858883#M300770</guid>
      <dc:creator>MayilVahanan</dc:creator>
      <dc:date>2015-06-19T04:49:13Z</dc:date>
    </item>
    <item>
      <title>Re: look up in 2 tables</title>
      <link>https://community.qlik.com/t5/QlikView/look-up-in-2-tables/m-p/858884#M300771</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ming,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Read the below link (Similar kind of question) and you might get a idea.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/thread/16732"&gt;Left Join of 2 tables with a partial string match&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="scriptina.regular.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/90047_scriptina.regular.png" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jun 2015 08:31:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/look-up-in-2-tables/m-p/858884#M300771</guid>
      <dc:creator>tamilarasu</dc:creator>
      <dc:date>2015-06-19T08:31:11Z</dc:date>
    </item>
    <item>
      <title>Re: look up in 2 tables</title>
      <link>https://community.qlik.com/t5/QlikView/look-up-in-2-tables/m-p/858885#M300772</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It works! Thanks so much!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jun 2015 09:58:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/look-up-in-2-tables/m-p/858885#M300772</guid>
      <dc:creator />
      <dc:date>2015-06-19T09:58:35Z</dc:date>
    </item>
    <item>
      <title>Re: look up in 2 tables</title>
      <link>https://community.qlik.com/t5/QlikView/look-up-in-2-tables/m-p/858886#M300773</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your help too!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jun 2015 09:58:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/look-up-in-2-tables/m-p/858886#M300773</guid>
      <dc:creator />
      <dc:date>2015-06-19T09:58:49Z</dc:date>
    </item>
  </channel>
</rss>

