<?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 To Match Records in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/To-Match-Records/m-p/2151980#M93300</link>
    <description>&lt;P&gt;Hi Friends,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have two tables with data as shown below&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Upali_Wijearatne_1-1702381747694.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/125238iC799F7C13DC8586A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Upali_Wijearatne_1-1702381747694.png" alt="Upali_Wijearatne_1-1702381747694.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here I want to find the code in Column D of Table 2 from Column A in the Table 1 and pull the amount (Column B) and record that amount against matching record in Column F of the Table 2. I have tried Apply Match command but with no success please. Kindly advice me how to solve this issue&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 12 Dec 2023 11:53:33 GMT</pubDate>
    <dc:creator>Upali_Wijearatne</dc:creator>
    <dc:date>2023-12-12T11:53:33Z</dc:date>
    <item>
      <title>To Match Records</title>
      <link>https://community.qlik.com/t5/App-Development/To-Match-Records/m-p/2151980#M93300</link>
      <description>&lt;P&gt;Hi Friends,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have two tables with data as shown below&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Upali_Wijearatne_1-1702381747694.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/125238iC799F7C13DC8586A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Upali_Wijearatne_1-1702381747694.png" alt="Upali_Wijearatne_1-1702381747694.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here I want to find the code in Column D of Table 2 from Column A in the Table 1 and pull the amount (Column B) and record that amount against matching record in Column F of the Table 2. I have tried Apply Match command but with no success please. Kindly advice me how to solve this issue&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Dec 2023 11:53:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/To-Match-Records/m-p/2151980#M93300</guid>
      <dc:creator>Upali_Wijearatne</dc:creator>
      <dc:date>2023-12-12T11:53:33Z</dc:date>
    </item>
    <item>
      <title>Re: To Match Records</title>
      <link>https://community.qlik.com/t5/App-Development/To-Match-Records/m-p/2151985#M93301</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;Use&amp;nbsp;&lt;STRONG&gt;KeepChar&amp;nbsp;&lt;/STRONG&gt;function in column A. The result of column A is only numbers, and then link the column A and D in two tables. Finally you got the amount against code in table 2.&lt;/P&gt;</description>
      <pubDate>Tue, 12 Dec 2023 12:01:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/To-Match-Records/m-p/2151985#M93301</guid>
      <dc:creator>Parthiban</dc:creator>
      <dc:date>2023-12-12T12:01:36Z</dc:date>
    </item>
    <item>
      <title>Re: To Match Records</title>
      <link>https://community.qlik.com/t5/App-Development/To-Match-Records/m-p/2151994#M93302</link>
      <description>&lt;P&gt;Thanks. But since I am new to qlikview pls elaborate it a little with an example.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Dec 2023 12:39:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/To-Match-Records/m-p/2151994#M93302</guid>
      <dc:creator>Upali_Wijearatne</dc:creator>
      <dc:date>2023-12-12T12:39:51Z</dc:date>
    </item>
    <item>
      <title>Re: To Match Records</title>
      <link>https://community.qlik.com/t5/App-Development/To-Match-Records/m-p/2151995#M93303</link>
      <description>&lt;DIV&gt;Try this one,&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;Table1:&lt;/DIV&gt;
&lt;DIV&gt;Load&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; keepchar(Description,'0123456789') as Key,&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp; &amp;nbsp; Amount&lt;/DIV&gt;
&lt;DIV&gt;from File Path;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;Table2:&lt;/DIV&gt;
&lt;DIV&gt;Load&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt; Code as Key,&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp; &amp;nbsp; Description&lt;/DIV&gt;
&lt;DIV&gt;from File Path;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;FONT color="#000000"&gt;&lt;STRONG&gt;&lt;EM&gt;Help users find answers! Do not forget to mark a solution that worked for you! If already marked, give it a thumbs up!&lt;/EM&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;</description>
      <pubDate>Tue, 12 Dec 2023 12:59:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/To-Match-Records/m-p/2151995#M93303</guid>
      <dc:creator>Parthiban</dc:creator>
      <dc:date>2023-12-12T12:59:22Z</dc:date>
    </item>
  </channel>
</rss>

