<?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: Connecting two table  and displaying only matched without joins. in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Connecting-two-table-and-displaying-only-matched-without-joins/m-p/1677368#M51499</link>
    <description>&lt;P&gt;Try as below:&lt;/P&gt;&lt;P&gt;A:&lt;BR /&gt;LOAD&lt;BR /&gt;ID as Code,&lt;BR /&gt;Name as A_Name,&lt;BR /&gt;"Age" as A_Age&lt;BR /&gt;FROM [lib://Web_Connection]&lt;BR /&gt;(html, utf8, embedded labels, table is @1);&lt;/P&gt;&lt;P&gt;B:&lt;BR /&gt;Load NO as Code,&lt;BR /&gt;Name,&lt;BR /&gt;"Age",&lt;BR /&gt;Location;&lt;BR /&gt;LOAD&lt;BR /&gt;"NO" ,&lt;BR /&gt;Name,&lt;BR /&gt;"Age",&lt;BR /&gt;Location&lt;BR /&gt;FROM [lib://Web_Connection]&lt;BR /&gt;(html, utf8, embedded labels, table is @2)&lt;BR /&gt;where Exists(Code,NO);&lt;/P&gt;</description>
    <pubDate>Thu, 20 Feb 2020 06:31:41 GMT</pubDate>
    <dc:creator>anushree1</dc:creator>
    <dc:date>2020-02-20T06:31:41Z</dc:date>
    <item>
      <title>Connecting two table  and displaying only matched without joins.</title>
      <link>https://community.qlik.com/t5/App-Development/Connecting-two-table-and-displaying-only-matched-without-joins/m-p/1676909#M51457</link>
      <description>&lt;P&gt;Hi Everyone,&lt;/P&gt;&lt;P&gt;I need guidance for the below scenario -&lt;/P&gt;&lt;P&gt;I have got two tables and there is one common field in both the tables, but I want to display only matching values from common fields.&lt;/P&gt;&lt;P&gt;For Example :&amp;nbsp;&lt;/P&gt;&lt;P&gt;Table A:&lt;/P&gt;&lt;TABLE border="1" width="100%"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="33.333333333333336%" height="25px"&gt;&lt;STRONG&gt;ID&amp;nbsp;&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD width="33.333333333333336%" height="25px"&gt;Name&amp;nbsp;&lt;/TD&gt;&lt;TD width="33.333333333333336%" height="25px"&gt;Age&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="25px"&gt;&lt;STRONG&gt;001&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD height="25px"&gt;ABC&lt;/TD&gt;&lt;TD height="25px"&gt;1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="25px"&gt;&lt;STRONG&gt;002&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD height="25px"&gt;BCD&lt;/TD&gt;&lt;TD height="25px"&gt;2&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="33.333333333333336%" height="25px"&gt;&lt;STRONG&gt;003&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD width="33.333333333333336%" height="25px"&gt;ZXY&lt;/TD&gt;&lt;TD width="33.333333333333336%" height="25px"&gt;2&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Table B:&lt;/P&gt;&lt;TABLE border="1" width="100%"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="25%" height="25px"&gt;&lt;STRONG&gt;NO&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD width="25%" height="25px"&gt;Name&lt;/TD&gt;&lt;TD width="25%" height="25px"&gt;Age&lt;/TD&gt;&lt;TD width="25%" height="25px"&gt;Location&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="25%" height="25px"&gt;&lt;STRONG&gt;001&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD width="25%" height="25px"&gt;ABC&lt;/TD&gt;&lt;TD width="25%" height="25px"&gt;4&lt;/TD&gt;&lt;TD width="25%" height="25px"&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="25%" height="25px"&gt;&lt;STRONG&gt;002&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD width="25%" height="25px"&gt;BCD&lt;/TD&gt;&lt;TD width="25%" height="25px"&gt;5&lt;/TD&gt;&lt;TD width="25%" height="25px"&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="25%" height="25px"&gt;305&lt;/TD&gt;&lt;TD width="25%" height="25px"&gt;DEF&lt;/TD&gt;&lt;TD width="25%" height="25px"&gt;3&lt;/TD&gt;&lt;TD width="25%" height="25px"&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="25px"&gt;405&lt;/TD&gt;&lt;TD height="25px"&gt;GHI&lt;/TD&gt;&lt;TD height="25px"&gt;2&lt;/TD&gt;&lt;TD height="25px"&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="25%" height="25px"&gt;&lt;STRONG&gt;003&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD width="25%" height="25px"&gt;ZXY&lt;/TD&gt;&lt;TD width="25%" height="25px"&gt;2&lt;/TD&gt;&lt;TD width="25%" height="25px"&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As per the above tables- ID and NO are the two matching columns, Now i need to display in Table B only records which are present in Table A.&lt;/P&gt;&lt;P&gt;Output Table B :&amp;nbsp;&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="25%" height="25px"&gt;&lt;STRONG&gt;NO&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD width="25%" height="25px"&gt;Name&lt;/TD&gt;&lt;TD width="25%" height="25px"&gt;Age&lt;/TD&gt;&lt;TD width="25%" height="25px"&gt;Location&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="25%" height="25px"&gt;&lt;STRONG&gt;001&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD width="25%" height="25px"&gt;ABC&lt;/TD&gt;&lt;TD width="25%" height="25px"&gt;4&lt;/TD&gt;&lt;TD width="25%" height="25px"&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="25%" height="25px"&gt;&lt;STRONG&gt;002&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD width="25%" height="25px"&gt;BCD&lt;/TD&gt;&lt;TD width="25%" height="25px"&gt;5&lt;/TD&gt;&lt;TD width="25%" height="25px"&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="25%" height="25px"&gt;&lt;STRONG&gt;003&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD width="25%" height="25px"&gt;ZXY&lt;/TD&gt;&lt;TD width="25%" height="25px"&gt;2&lt;/TD&gt;&lt;TD width="25%" height="25px"&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As per my understanding, we can do it with Exists Condition. I dont want to join tables or Drop Tables.&lt;/P&gt;&lt;P&gt;Please let me know your views.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in Advance!&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 03:13:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Connecting-two-table-and-displaying-only-matched-without-joins/m-p/1676909#M51457</guid>
      <dc:creator>LP27</dc:creator>
      <dc:date>2024-11-16T03:13:27Z</dc:date>
    </item>
    <item>
      <title>Re: Connecting two table  and displaying only matched without joins.</title>
      <link>https://community.qlik.com/t5/App-Development/Connecting-two-table-and-displaying-only-matched-without-joins/m-p/1676912#M51458</link>
      <description>&lt;P&gt;Did you try with exists()?&amp;nbsp; Like:&lt;/P&gt;&lt;P&gt;Load * from tableA;&lt;/P&gt;&lt;P&gt;Load * from tableB where&amp;nbsp;Where &lt;STRONG&gt;Exists(ID, NO)&lt;/STRONG&gt;;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Feb 2020 07:56:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Connecting-two-table-and-displaying-only-matched-without-joins/m-p/1676912#M51458</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2020-02-19T07:56:29Z</dc:date>
    </item>
    <item>
      <title>Re: Connecting two table  and displaying only matched without joins.</title>
      <link>https://community.qlik.com/t5/App-Development/Connecting-two-table-and-displaying-only-matched-without-joins/m-p/1676913#M51459</link>
      <description>&lt;P&gt;Yes I tried like this,:&lt;/P&gt;&lt;P&gt;Table B:&lt;/P&gt;&lt;P&gt;No as Code,&lt;/P&gt;&lt;P&gt;Name,&lt;/P&gt;&lt;P&gt;Age,&lt;/P&gt;&lt;P&gt;Location&lt;/P&gt;&lt;P&gt;From(path);&lt;/P&gt;&lt;P&gt;Table A:&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;ID as code,&lt;/P&gt;&lt;P&gt;Name,&lt;/P&gt;&lt;P&gt;Age,&lt;/P&gt;&lt;P&gt;from (Path)&lt;/P&gt;&lt;P&gt;Where exists(Code,ID);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Was not successful with the results!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Feb 2020 07:58:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Connecting-two-table-and-displaying-only-matched-without-joins/m-p/1676913#M51459</guid>
      <dc:creator>LP27</dc:creator>
      <dc:date>2020-02-19T07:58:02Z</dc:date>
    </item>
    <item>
      <title>Re: Connecting two table  and displaying only matched without joins.</title>
      <link>https://community.qlik.com/t5/App-Development/Connecting-two-table-and-displaying-only-matched-without-joins/m-p/1676919#M51460</link>
      <description>&lt;P&gt;Thanks for reply!&lt;/P&gt;&lt;P&gt;If I try the way you say, it generating Zero values from Tables B and Generating all the values from Table B.&lt;/P&gt;</description>
      <pubDate>Wed, 19 Feb 2020 08:08:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Connecting-two-table-and-displaying-only-matched-without-joins/m-p/1676919#M51460</guid>
      <dc:creator>LP27</dc:creator>
      <dc:date>2020-02-19T08:08:15Z</dc:date>
    </item>
    <item>
      <title>Re: Connecting two table  and displaying only matched without joins.</title>
      <link>https://community.qlik.com/t5/App-Development/Connecting-two-table-and-displaying-only-matched-without-joins/m-p/1676926#M51461</link>
      <description>&lt;P&gt;You must use the condition :&amp;nbsp;&lt;SPAN&gt;Where exists(ID,Code);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Please use the script as below and check it must work, also attaching the sample for reference:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;A:&lt;BR /&gt;LOAD&lt;BR /&gt;ID,&lt;BR /&gt;Name,&lt;BR /&gt;"Age"&lt;BR /&gt;FROM [lib://Web_Connection]&lt;BR /&gt;(html, utf8, embedded labels, table is @1);&lt;/P&gt;&lt;P&gt;B:&lt;BR /&gt;LOAD&lt;BR /&gt;"NO",&lt;BR /&gt;Name,&lt;BR /&gt;"Age",&lt;BR /&gt;Location&lt;BR /&gt;FROM [lib://Web_Connection]&lt;BR /&gt;(html, utf8, embedded labels, table is @2)&lt;BR /&gt;where Exists( ID,NO);&lt;/P&gt;&lt;P&gt;Drop table A;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Feb 2020 08:41:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Connecting-two-table-and-displaying-only-matched-without-joins/m-p/1676926#M51461</guid>
      <dc:creator>anushree1</dc:creator>
      <dc:date>2020-02-19T08:41:05Z</dc:date>
    </item>
    <item>
      <title>Re: Connecting two table  and displaying only matched without joins.</title>
      <link>https://community.qlik.com/t5/App-Development/Connecting-two-table-and-displaying-only-matched-without-joins/m-p/1676928#M51462</link>
      <description>&lt;P&gt;I tried as you say, Its generating zero values from Table B.&lt;/P&gt;</description>
      <pubDate>Wed, 19 Feb 2020 08:46:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Connecting-two-table-and-displaying-only-matched-without-joins/m-p/1676928#M51462</guid>
      <dc:creator>LP27</dc:creator>
      <dc:date>2020-02-19T08:46:59Z</dc:date>
    </item>
    <item>
      <title>Re: Connecting two table  and displaying only matched without joins.</title>
      <link>https://community.qlik.com/t5/App-Development/Connecting-two-table-and-displaying-only-matched-without-joins/m-p/1676929#M51463</link>
      <description>&lt;P&gt;Did you check the attachment i have shared&lt;/P&gt;</description>
      <pubDate>Wed, 19 Feb 2020 08:48:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Connecting-two-table-and-displaying-only-matched-without-joins/m-p/1676929#M51463</guid>
      <dc:creator>anushree1</dc:creator>
      <dc:date>2020-02-19T08:48:18Z</dc:date>
    </item>
    <item>
      <title>Re: Connecting two table  and displaying only matched without joins.</title>
      <link>https://community.qlik.com/t5/App-Development/Connecting-two-table-and-displaying-only-matched-without-joins/m-p/1676932#M51465</link>
      <description>&lt;P&gt;Yes I did, But there you have dropped Table A,&amp;nbsp; but I would needing other columns from Table A so Wont be able to drop.&lt;/P&gt;</description>
      <pubDate>Wed, 19 Feb 2020 08:51:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Connecting-two-table-and-displaying-only-matched-without-joins/m-p/1676932#M51465</guid>
      <dc:creator>LP27</dc:creator>
      <dc:date>2020-02-19T08:51:36Z</dc:date>
    </item>
    <item>
      <title>Re: Connecting two table  and displaying only matched without joins.</title>
      <link>https://community.qlik.com/t5/App-Development/Connecting-two-table-and-displaying-only-matched-without-joins/m-p/1676933#M51466</link>
      <description>&lt;P&gt;if you need Table A you can keep it too, I dropped it for removing Synthetic keys, so if you want Table A jus rename Fields Name and Age in Table A and you must be good to go&lt;/P&gt;</description>
      <pubDate>Wed, 19 Feb 2020 08:54:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Connecting-two-table-and-displaying-only-matched-without-joins/m-p/1676933#M51466</guid>
      <dc:creator>anushree1</dc:creator>
      <dc:date>2020-02-19T08:54:33Z</dc:date>
    </item>
    <item>
      <title>Re: Connecting two table  and displaying only matched without joins.</title>
      <link>https://community.qlik.com/t5/App-Development/Connecting-two-table-and-displaying-only-matched-without-joins/m-p/1676936#M51467</link>
      <description>&lt;P&gt;So this is my script-&lt;/P&gt;&lt;P&gt;Table A:&lt;BR /&gt;LOAD&lt;BR /&gt;ID as Code,&lt;BR /&gt;Name,&lt;BR /&gt;"Type",&lt;BR /&gt;"PM Code",&lt;BR /&gt;applymap('P_Map', "PM Code",'Other') as "PM",&lt;BR /&gt;applymap('BMap', "PM Code",'Other') as "BU",&lt;BR /&gt;applymap('SMap', "PM Code",'Other') as "Seg",&lt;BR /&gt;FROM [Path];&lt;/P&gt;&lt;P&gt;Table B:&lt;BR /&gt;LOAD&lt;BR /&gt;No as Code,&lt;BR /&gt;"Part or Series #",&lt;BR /&gt;"Program 1",&lt;BR /&gt;Notes,&lt;BR /&gt;"Function Category"&lt;BR /&gt;FROM [Path]&lt;BR /&gt;where Exists(ID,NO);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is my original script! not sure how to proceed with this scrip here.&lt;/P&gt;</description>
      <pubDate>Wed, 19 Feb 2020 09:02:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Connecting-two-table-and-displaying-only-matched-without-joins/m-p/1676936#M51467</guid>
      <dc:creator>LP27</dc:creator>
      <dc:date>2020-02-19T09:02:39Z</dc:date>
    </item>
    <item>
      <title>Re: Connecting two table  and displaying only matched without joins.</title>
      <link>https://community.qlik.com/t5/App-Development/Connecting-two-table-and-displaying-only-matched-without-joins/m-p/1677021#M51474</link>
      <description>&lt;P&gt;I am not able to do the advised way!&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have pasted my script could you guide me the possible way!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Feb 2020 12:23:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Connecting-two-table-and-displaying-only-matched-without-joins/m-p/1677021#M51474</guid>
      <dc:creator>LP27</dc:creator>
      <dc:date>2020-02-19T12:23:29Z</dc:date>
    </item>
    <item>
      <title>Re: Connecting two table  and displaying only matched without joins.</title>
      <link>https://community.qlik.com/t5/App-Development/Connecting-two-table-and-displaying-only-matched-without-joins/m-p/1677091#M51482</link>
      <description>&lt;P&gt;The issue here is the renaming of ID and No as code in both the places, try without aliasing ID and No Fields.&lt;/P&gt;&lt;P&gt;If alias is a must try using rename function post the exists&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Feb 2020 14:19:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Connecting-two-table-and-displaying-only-matched-without-joins/m-p/1677091#M51482</guid>
      <dc:creator>anushree1</dc:creator>
      <dc:date>2020-02-19T14:19:45Z</dc:date>
    </item>
    <item>
      <title>Re: Connecting two table  and displaying only matched without joins.</title>
      <link>https://community.qlik.com/t5/App-Development/Connecting-two-table-and-displaying-only-matched-without-joins/m-p/1677131#M51485</link>
      <description>&lt;P&gt;I need aliasing because ID and No are columns that are common in both tables. I need to connect them.&lt;/P&gt;&lt;P&gt;Not sure how to use rename function post the Exist function.&lt;/P&gt;&lt;P&gt;could you give an example.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Feb 2020 15:25:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Connecting-two-table-and-displaying-only-matched-without-joins/m-p/1677131#M51485</guid>
      <dc:creator>LP27</dc:creator>
      <dc:date>2020-02-19T15:25:06Z</dc:date>
    </item>
    <item>
      <title>Re: Connecting two table  and displaying only matched without joins.</title>
      <link>https://community.qlik.com/t5/App-Development/Connecting-two-table-and-displaying-only-matched-without-joins/m-p/1677368#M51499</link>
      <description>&lt;P&gt;Try as below:&lt;/P&gt;&lt;P&gt;A:&lt;BR /&gt;LOAD&lt;BR /&gt;ID as Code,&lt;BR /&gt;Name as A_Name,&lt;BR /&gt;"Age" as A_Age&lt;BR /&gt;FROM [lib://Web_Connection]&lt;BR /&gt;(html, utf8, embedded labels, table is @1);&lt;/P&gt;&lt;P&gt;B:&lt;BR /&gt;Load NO as Code,&lt;BR /&gt;Name,&lt;BR /&gt;"Age",&lt;BR /&gt;Location;&lt;BR /&gt;LOAD&lt;BR /&gt;"NO" ,&lt;BR /&gt;Name,&lt;BR /&gt;"Age",&lt;BR /&gt;Location&lt;BR /&gt;FROM [lib://Web_Connection]&lt;BR /&gt;(html, utf8, embedded labels, table is @2)&lt;BR /&gt;where Exists(Code,NO);&lt;/P&gt;</description>
      <pubDate>Thu, 20 Feb 2020 06:31:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Connecting-two-table-and-displaying-only-matched-without-joins/m-p/1677368#M51499</guid>
      <dc:creator>anushree1</dc:creator>
      <dc:date>2020-02-20T06:31:41Z</dc:date>
    </item>
    <item>
      <title>Re: Connecting two table  and displaying only matched without joins.</title>
      <link>https://community.qlik.com/t5/App-Development/Connecting-two-table-and-displaying-only-matched-without-joins/m-p/1677392#M51503</link>
      <description>&lt;P&gt;Yes I have tried this method too.&amp;nbsp; This extracts All the records from field &lt;STRONG&gt;ID&lt;/STRONG&gt; in Table A.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I also tried using exist function in Table A too.&amp;nbsp; output was not matching my required Output&amp;nbsp; &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Required Output&lt;/STRONG&gt;&lt;/EM&gt;: I just need matching values from&amp;nbsp; Field &lt;STRONG&gt;ID&lt;/STRONG&gt; and &lt;STRONG&gt;No&lt;/STRONG&gt;, keeping all the columns from both the table.&lt;/P&gt;</description>
      <pubDate>Thu, 20 Feb 2020 07:43:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Connecting-two-table-and-displaying-only-matched-without-joins/m-p/1677392#M51503</guid>
      <dc:creator>LP27</dc:creator>
      <dc:date>2020-02-20T07:43:59Z</dc:date>
    </item>
    <item>
      <title>Re: Connecting two table  and displaying only matched without joins.</title>
      <link>https://community.qlik.com/t5/App-Development/Connecting-two-table-and-displaying-only-matched-without-joins/m-p/1677402#M51504</link>
      <description>&lt;P&gt;Well I am not very sure of what you are trying to achieve here, another alternative for this issue could be the use of left keep plz check the below code:&lt;/P&gt;&lt;P&gt;A:&lt;BR /&gt;LOAD&lt;BR /&gt;ID as Code,&lt;BR /&gt;Name as A_Name,&lt;BR /&gt;"Age" as A_Age&lt;BR /&gt;FROM [lib://Web_Connection]&lt;BR /&gt;(html, utf8, embedded labels, table is @1);&lt;/P&gt;&lt;P&gt;Left keep (A)&lt;BR /&gt;B:&lt;/P&gt;&lt;P&gt;LOAD&lt;BR /&gt;"NO" as Code,&lt;BR /&gt;Name,&lt;BR /&gt;"Age",&lt;BR /&gt;Location&lt;BR /&gt;FROM [lib://Web_Connection]&lt;BR /&gt;(html, utf8, embedded labels, table is @2)&lt;BR /&gt;;&lt;/P&gt;&lt;P&gt;In case this also does not work request you to share the complete sample with the code so that I can check why zero rows are returned B .&lt;/P&gt;</description>
      <pubDate>Thu, 20 Feb 2020 08:08:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Connecting-two-table-and-displaying-only-matched-without-joins/m-p/1677402#M51504</guid>
      <dc:creator>anushree1</dc:creator>
      <dc:date>2020-02-20T08:08:11Z</dc:date>
    </item>
  </channel>
</rss>

