<?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: matching data from two different tables in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/matching-data-from-two-different-tables/m-p/2020267#M84249</link>
    <description>No it's not working&lt;BR /&gt;&lt;BR /&gt;I need to check firstly the data from first table Code1 is matching with data from 2nd table Code2 if matches mark the matching data from code2 as in new field Code, otherwise N/A</description>
    <pubDate>Wed, 28 Dec 2022 11:11:44 GMT</pubDate>
    <dc:creator>Bharathi09</dc:creator>
    <dc:date>2022-12-28T11:11:44Z</dc:date>
    <item>
      <title>matching data from two different tables</title>
      <link>https://community.qlik.com/t5/App-Development/matching-data-from-two-different-tables/m-p/2019976#M84222</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have two different tables&lt;/P&gt;
&lt;P&gt;Table1:&lt;/P&gt;
&lt;P&gt;load&lt;/P&gt;
&lt;P&gt;Code,&lt;/P&gt;
&lt;P&gt;salary,&lt;/P&gt;
&lt;P&gt;ID,&lt;/P&gt;
&lt;P&gt;Name&lt;/P&gt;
&lt;P&gt;From ();&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Table2:&lt;/P&gt;
&lt;P&gt;Code1,&lt;/P&gt;
&lt;P&gt;DOJ,&lt;/P&gt;
&lt;P&gt;DOL,&lt;/P&gt;
&lt;P&gt;Age&lt;/P&gt;
&lt;P&gt;From();&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I want to see that data from Table2 'code1' matches with data from Table1 'code'&lt;/P&gt;
&lt;P&gt;if matches it should give that matching data in another field as Code_data&lt;/P&gt;
&lt;P&gt;if not matches it should give NA&lt;/P&gt;</description>
      <pubDate>Tue, 27 Dec 2022 03:45:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/matching-data-from-two-different-tables/m-p/2019976#M84222</guid>
      <dc:creator>Bharathi09</dc:creator>
      <dc:date>2022-12-27T03:45:26Z</dc:date>
    </item>
    <item>
      <title>Re: matching data from two different tables</title>
      <link>https://community.qlik.com/t5/App-Development/matching-data-from-two-different-tables/m-p/2019984#M84223</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/180981"&gt;@Bharathi09&lt;/a&gt;&amp;nbsp;,can you give a try using Applymap function.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://help.qlik.com/en-US/qlikview/May2022/Subsystems/Client/Content/QV_QlikView/Scripting/MappingFunctions/ApplyMap.htm" target="_blank"&gt;https://help.qlik.com/en-US/qlikview/May2022/Subsystems/Client/Content/QV_QlikView/Scripting/MappingFunctions/ApplyMap.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Dec 2022 06:03:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/matching-data-from-two-different-tables/m-p/2019984#M84223</guid>
      <dc:creator>anat</dc:creator>
      <dc:date>2022-12-27T06:03:56Z</dc:date>
    </item>
    <item>
      <title>Re: matching data from two different tables</title>
      <link>https://community.qlik.com/t5/App-Development/matching-data-from-two-different-tables/m-p/2019988#M84225</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/180981"&gt;@Bharathi09&lt;/a&gt;&amp;nbsp;A simple left join can work as well.&lt;/P&gt;
&lt;P&gt;Table1:&lt;/P&gt;
&lt;P&gt;load&lt;/P&gt;
&lt;P&gt;Code,&lt;/P&gt;
&lt;P&gt;salary,&lt;/P&gt;
&lt;P&gt;ID,&lt;/P&gt;
&lt;P&gt;Name&lt;/P&gt;
&lt;P&gt;From ();&lt;/P&gt;
&lt;P&gt;left join (Table1)&lt;/P&gt;
&lt;P&gt;Table2:&lt;/P&gt;
&lt;P&gt;Code1 as&amp;nbsp; code,&lt;/P&gt;
&lt;P&gt;DOJ,&lt;/P&gt;
&lt;P&gt;DOL,&lt;/P&gt;
&lt;P&gt;Age&lt;/P&gt;
&lt;P&gt;From();&lt;/P&gt;
&lt;P&gt;Noconcatenate:&lt;/P&gt;
&lt;P&gt;Table3:&lt;/P&gt;
&lt;P&gt;Load&lt;/P&gt;
&lt;P&gt;if(isnull(Code),'N/A',Code) as Code,&lt;/P&gt;
&lt;P&gt;salary,&lt;/P&gt;
&lt;P&gt;ID,&lt;/P&gt;
&lt;P&gt;Name,&lt;/P&gt;
&lt;P&gt;DOJ,&lt;/P&gt;
&lt;P&gt;DOL,&lt;/P&gt;
&lt;P&gt;Age&lt;/P&gt;
&lt;P&gt;Resident Table1;&lt;/P&gt;
&lt;P&gt;Drop table Table1;&lt;/P&gt;
&lt;P&gt;If this resolves your issue, please like ad accept it as a solution.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Dec 2022 07:24:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/matching-data-from-two-different-tables/m-p/2019988#M84225</guid>
      <dc:creator>sidhiq91</dc:creator>
      <dc:date>2022-12-27T07:24:51Z</dc:date>
    </item>
    <item>
      <title>Re: matching data from two different tables</title>
      <link>https://community.qlik.com/t5/App-Development/matching-data-from-two-different-tables/m-p/2020267#M84249</link>
      <description>No it's not working&lt;BR /&gt;&lt;BR /&gt;I need to check firstly the data from first table Code1 is matching with data from 2nd table Code2 if matches mark the matching data from code2 as in new field Code, otherwise N/A</description>
      <pubDate>Wed, 28 Dec 2022 11:11:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/matching-data-from-two-different-tables/m-p/2020267#M84249</guid>
      <dc:creator>Bharathi09</dc:creator>
      <dc:date>2022-12-28T11:11:44Z</dc:date>
    </item>
  </channel>
</rss>

