<?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: Link multiple fields in table to other (master) data table in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Link-multiple-fields-in-table-to-other-master-data-table/m-p/1891112#M73429</link>
    <description>&lt;P&gt;[Items]:&lt;BR /&gt;Crosstable (SupplierNo, SupplierID, 2)&lt;BR /&gt;Load&lt;BR /&gt;ItemID,&lt;BR /&gt;ItemDescription,&lt;BR /&gt;ItemSupplierID1,&lt;BR /&gt;ItemSupplierID2,&lt;BR /&gt;ItemSupplierID3&lt;BR /&gt;From ...&lt;/P&gt;&lt;P&gt;See also&amp;nbsp;&lt;A href="https://community.qlik.com/t5/Qlik-Design-Blog/The-Crosstable-Load/ba-p/1468083" target="_blank" rel="noopener"&gt;https://community.qlik.com/t5/Qlik-Design-Blog/The-Crosstable-Load/ba-p/1468083&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 09 Feb 2022 16:25:09 GMT</pubDate>
    <dc:creator>hic</dc:creator>
    <dc:date>2022-02-09T16:25:09Z</dc:date>
    <item>
      <title>Link multiple fields in table to other (master) data table</title>
      <link>https://community.qlik.com/t5/App-Development/Link-multiple-fields-in-table-to-other-master-data-table/m-p/1891105#M73428</link>
      <description>&lt;P&gt;Hi there, I have the following situation//tables:&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;[Suppliers]:
Load
	SupplierID,
	SupplierName,
	....

[Items]:
Load
	ItemID,
	ItemDescription,
	ItemSupplierID1,
	ItemSupplierID2,
	ItemSupplierID3
	....&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In the app I want to create an overview of all items including the name of the Supplier1-3. Though a mapping load could be used to solve that one, I also want to be able to select a Supplier and view ALL ITEMS linked to that supplier, whether it is supplier1, 2 or 3.&lt;/P&gt;
&lt;P&gt;Any suggestions how to solve that?&lt;/P&gt;</description>
      <pubDate>Wed, 09 Feb 2022 16:19:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Link-multiple-fields-in-table-to-other-master-data-table/m-p/1891105#M73428</guid>
      <dc:creator>harm_dataspark</dc:creator>
      <dc:date>2022-02-09T16:19:26Z</dc:date>
    </item>
    <item>
      <title>Re: Link multiple fields in table to other (master) data table</title>
      <link>https://community.qlik.com/t5/App-Development/Link-multiple-fields-in-table-to-other-master-data-table/m-p/1891112#M73429</link>
      <description>&lt;P&gt;[Items]:&lt;BR /&gt;Crosstable (SupplierNo, SupplierID, 2)&lt;BR /&gt;Load&lt;BR /&gt;ItemID,&lt;BR /&gt;ItemDescription,&lt;BR /&gt;ItemSupplierID1,&lt;BR /&gt;ItemSupplierID2,&lt;BR /&gt;ItemSupplierID3&lt;BR /&gt;From ...&lt;/P&gt;&lt;P&gt;See also&amp;nbsp;&lt;A href="https://community.qlik.com/t5/Qlik-Design-Blog/The-Crosstable-Load/ba-p/1468083" target="_blank" rel="noopener"&gt;https://community.qlik.com/t5/Qlik-Design-Blog/The-Crosstable-Load/ba-p/1468083&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Feb 2022 16:25:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Link-multiple-fields-in-table-to-other-master-data-table/m-p/1891112#M73429</guid>
      <dc:creator>hic</dc:creator>
      <dc:date>2022-02-09T16:25:09Z</dc:date>
    </item>
    <item>
      <title>Re: Link multiple fields in table to other (master) data table</title>
      <link>https://community.qlik.com/t5/App-Development/Link-multiple-fields-in-table-to-other-master-data-table/m-p/1891114#M73430</link>
      <description>&lt;P&gt;Hi there, I would create a table this way:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;ITEM_to_SUPPLIER:
LOAD DISTINCT
	ItemID
	ItemSupplierID1 as SupplierID
RESIDENT Items;

CONCATENATE (ITEM_to_SUPPLIER)
LOAD DISTINCT
	ItemID
	ItemSupplierID2 as SupplierID
RESIDENT Items;

CONCATENATE (ITEM_to_SUPPLIER)
LOAD DISTINCT
	ItemID
	ItemSupplierID3 as SupplierID
RESIDENT Items;&lt;/LI-CODE&gt;
&lt;P&gt;Hope it helps.&lt;/P&gt;</description>
      <pubDate>Wed, 09 Feb 2022 16:26:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Link-multiple-fields-in-table-to-other-master-data-table/m-p/1891114#M73430</guid>
      <dc:creator>AG-gugelbisolutions</dc:creator>
      <dc:date>2022-02-09T16:26:06Z</dc:date>
    </item>
    <item>
      <title>Re: Link multiple fields in table to other (master) data table</title>
      <link>https://community.qlik.com/t5/App-Development/Link-multiple-fields-in-table-to-other-master-data-table/m-p/1892013#M73513</link>
      <description>&lt;P&gt;Though both suggestions might work, I went for the second one (from&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/111148"&gt;@AG-gugelbisolutions&lt;/a&gt;). Works like&amp;nbsp; a charm!&lt;/P&gt;</description>
      <pubDate>Fri, 11 Feb 2022 15:17:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Link-multiple-fields-in-table-to-other-master-data-table/m-p/1892013#M73513</guid>
      <dc:creator>harm_dataspark</dc:creator>
      <dc:date>2022-02-11T15:17:05Z</dc:date>
    </item>
  </channel>
</rss>

