<?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: Check if the column value exists in another table column and count the number of times it exits in Search the Community</title>
    <link>https://community.qlik.com/t5/Search-the-Community/Check-if-the-column-value-exists-in-another-table-column-and/m-p/1799860#M281</link>
    <description>&lt;P&gt;Thank you so much , I will Definitely try this out &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; And comment again .&lt;/P&gt;</description>
    <pubDate>Thu, 15 Apr 2021 19:01:31 GMT</pubDate>
    <dc:creator>Manasareddy09</dc:creator>
    <dc:date>2021-04-15T19:01:31Z</dc:date>
    <item>
      <title>Check if the column value exists in another table column and count the number of times it exits</title>
      <link>https://community.qlik.com/t5/Search-the-Community/Check-if-the-column-value-exists-in-another-table-column-and/m-p/1799544#M275</link>
      <description>&lt;P&gt;Hello all,&amp;nbsp;&lt;/P&gt;&lt;P&gt;this is my first time posting a question here on the community.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;I am currently working in SCM ,&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have two tables, one table with supplier information another with product information.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need to check if the Id(in supplier table) matches with the Id(in product table) and count how many products are assigned with the same iD in product table.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;please let me know if anyone of you could help me with this.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;thank you,&amp;nbsp;&lt;/P&gt;&lt;P&gt;manu.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 14 Apr 2021 16:58:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Search-the-Community/Check-if-the-column-value-exists-in-another-table-column-and/m-p/1799544#M275</guid>
      <dc:creator>Manasareddy09</dc:creator>
      <dc:date>2021-04-14T16:58:11Z</dc:date>
    </item>
    <item>
      <title>Re: Check if the column value exists in another table column and count the number of times it exits</title>
      <link>https://community.qlik.com/t5/Search-the-Community/Check-if-the-column-value-exists-in-another-table-column-and/m-p/1799589#M276</link>
      <description>&lt;P&gt;I'll use the&amp;nbsp;&lt;A href="https://help.qlik.com/en-US/qlikview/April2020/Subsystems/Client/Content/QV_QlikView/Scripting/MappingFunctions/ApplyMap.htm" target="_self"&gt;ApplyMap()&lt;/A&gt;&amp;nbsp; function&lt;/P&gt;&lt;P&gt;mapProductTable:&lt;/P&gt;&lt;P&gt;mapping&lt;/P&gt;&lt;P&gt;load ID,&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Count(ID) as ProductCount&lt;/P&gt;&lt;P&gt;From ProductTable group by ID;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SupplierInformation:&lt;/P&gt;&lt;P&gt;load ID,&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ApplyMap('mapProductTable',ID,0) as ProductCount&lt;/P&gt;&lt;P&gt;From SupplierInformation;&lt;/P&gt;&lt;P&gt;The 0 will indicate that the supplier id does not exist in the product table.&lt;/P&gt;</description>
      <pubDate>Wed, 14 Apr 2021 21:20:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Search-the-Community/Check-if-the-column-value-exists-in-another-table-column-and/m-p/1799589#M276</guid>
      <dc:creator>jwjackso</dc:creator>
      <dc:date>2021-04-14T21:20:16Z</dc:date>
    </item>
    <item>
      <title>Re: Check if the column value exists in another table column and count the number of times it exits</title>
      <link>https://community.qlik.com/t5/Search-the-Community/Check-if-the-column-value-exists-in-another-table-column-and/m-p/1799848#M278</link>
      <description />
      <pubDate>Thu, 15 Apr 2021 18:37:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Search-the-Community/Check-if-the-column-value-exists-in-another-table-column-and/m-p/1799848#M278</guid>
      <dc:creator>Manasareddy09</dc:creator>
      <dc:date>2021-04-15T18:37:57Z</dc:date>
    </item>
    <item>
      <title>Re: Check if the column value exists in another table column and count the number of times it exits</title>
      <link>https://community.qlik.com/t5/Search-the-Community/Check-if-the-column-value-exists-in-another-table-column-and/m-p/1799851#M279</link>
      <description>&lt;P&gt;Hello sir,&lt;/P&gt;&lt;P&gt;Thank for replying me,&lt;/P&gt;&lt;P&gt;I have attached sample tables, The goal is not to check if the ID exists but to count how many of the same ID exists.&amp;nbsp;&lt;/P&gt;&lt;P&gt;the goal is to create a new column, called "Supp_Has_Product" which shows us how many products are assigned per one supplier. Every supplier has Unique ID, And in th products table there might be multiple same ID if the products come from the same supplier.&amp;nbsp;&lt;/P&gt;&lt;P&gt;So we need to check if the ID exists in the product table and also at the same time check how many products the are assigned.&lt;/P&gt;&lt;P&gt;Thank you for your time in advance.&lt;/P&gt;</description>
      <pubDate>Thu, 15 Apr 2021 18:42:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Search-the-Community/Check-if-the-column-value-exists-in-another-table-column-and/m-p/1799851#M279</guid>
      <dc:creator>Manasareddy09</dc:creator>
      <dc:date>2021-04-15T18:42:59Z</dc:date>
    </item>
    <item>
      <title>Re: Check if the column value exists in another table column and count the number of times it exits</title>
      <link>https://community.qlik.com/t5/Search-the-Community/Check-if-the-column-value-exists-in-another-table-column-and/m-p/1799855#M280</link>
      <description>&lt;P&gt;I believe the ApplyMap will work for you.&amp;nbsp; The mapping table is a list of IDs with the number records in the Product table.&amp;nbsp; The ApplyMap function will check if the Supplier Information ID is in the mapping table and create a new column as ProductCount.&lt;/P&gt;</description>
      <pubDate>Thu, 15 Apr 2021 18:52:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Search-the-Community/Check-if-the-column-value-exists-in-another-table-column-and/m-p/1799855#M280</guid>
      <dc:creator>jwjackso</dc:creator>
      <dc:date>2021-04-15T18:52:42Z</dc:date>
    </item>
    <item>
      <title>Re: Check if the column value exists in another table column and count the number of times it exits</title>
      <link>https://community.qlik.com/t5/Search-the-Community/Check-if-the-column-value-exists-in-another-table-column-and/m-p/1799860#M281</link>
      <description>&lt;P&gt;Thank you so much , I will Definitely try this out &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; And comment again .&lt;/P&gt;</description>
      <pubDate>Thu, 15 Apr 2021 19:01:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Search-the-Community/Check-if-the-column-value-exists-in-another-table-column-and/m-p/1799860#M281</guid>
      <dc:creator>Manasareddy09</dc:creator>
      <dc:date>2021-04-15T19:01:31Z</dc:date>
    </item>
  </channel>
</rss>

