<?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: Multiple connected tables with a look up table in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Multiple-connected-tables-with-a-look-up-table/m-p/2099288#M89996</link>
    <description>&lt;P&gt;Well, it ultimately depends on the data model and the specific questions that will be asked based on it. In any case, you could CONCATENATE the three tables and then link the attributes of the store to the resultant table.&lt;/P&gt;</description>
    <pubDate>Tue, 01 Aug 2023 22:09:31 GMT</pubDate>
    <dc:creator>BrunPierre</dc:creator>
    <dc:date>2023-08-01T22:09:31Z</dc:date>
    <item>
      <title>Multiple connected tables with a look up table</title>
      <link>https://community.qlik.com/t5/App-Development/Multiple-connected-tables-with-a-look-up-table/m-p/2099260#M89991</link>
      <description>&lt;P&gt;I have 3 tables that all connect using a primary key of CustomerID.&amp;nbsp; All of these tables also have a store_id field that is specific to that table.&amp;nbsp; I then have a lookup table with store_id information which include information like store name and other store identifier information.&amp;nbsp; When I try to load these I'm getting loop errors.&amp;nbsp; What is the best way to load these?&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Transaction table&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Customer ID&lt;/P&gt;
&lt;P&gt;Order ID&lt;/P&gt;
&lt;P&gt;Store ID&lt;/P&gt;
&lt;P&gt;Sales Amount&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Application table&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Customer ID&lt;/P&gt;
&lt;P&gt;Store ID&lt;/P&gt;
&lt;P&gt;Date&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Customer table&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Customer ID&lt;/P&gt;
&lt;P&gt;Customer status&lt;/P&gt;
&lt;P&gt;Store ID&lt;/P&gt;
&lt;P&gt;Customer Address&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Store ID Lookup Table&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Store ID&lt;/P&gt;
&lt;P&gt;Store Name&lt;/P&gt;
&lt;P&gt;Store Type&lt;/P&gt;</description>
      <pubDate>Tue, 01 Aug 2023 20:09:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Multiple-connected-tables-with-a-look-up-table/m-p/2099260#M89991</guid>
      <dc:creator>SI_NY02</dc:creator>
      <dc:date>2023-08-01T20:09:24Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple connected tables with a look up table</title>
      <link>https://community.qlik.com/t5/App-Development/Multiple-connected-tables-with-a-look-up-table/m-p/2099288#M89996</link>
      <description>&lt;P&gt;Well, it ultimately depends on the data model and the specific questions that will be asked based on it. In any case, you could CONCATENATE the three tables and then link the attributes of the store to the resultant table.&lt;/P&gt;</description>
      <pubDate>Tue, 01 Aug 2023 22:09:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Multiple-connected-tables-with-a-look-up-table/m-p/2099288#M89996</guid>
      <dc:creator>BrunPierre</dc:creator>
      <dc:date>2023-08-01T22:09:31Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple connected tables with a look up table</title>
      <link>https://community.qlik.com/t5/App-Development/Multiple-connected-tables-with-a-look-up-table/m-p/2099289#M89997</link>
      <description>Can you show me how it would look?&lt;BR /&gt;</description>
      <pubDate>Tue, 01 Aug 2023 22:03:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Multiple-connected-tables-with-a-look-up-table/m-p/2099289#M89997</guid>
      <dc:creator>SI_NY02</dc:creator>
      <dc:date>2023-08-01T22:03:28Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple connected tables with a look up table</title>
      <link>https://community.qlik.com/t5/App-Development/Multiple-connected-tables-with-a-look-up-table/m-p/2099297#M89999</link>
      <description>&lt;P&gt;TAC:&lt;BR /&gt;LOAD [Customer ID],&lt;BR /&gt;[Order ID],&lt;BR /&gt;[Store ID],&lt;BR /&gt;[Sales Amount]&lt;/P&gt;
&lt;P&gt;FROM Transaction_table;&lt;/P&gt;
&lt;P&gt;Concatenate&lt;BR /&gt;LOAD [Customer ID],&lt;BR /&gt;[Store ID],&lt;BR /&gt;Date&lt;/P&gt;
&lt;P&gt;FROM Application_table;&lt;/P&gt;
&lt;P&gt;Concatenate&lt;BR /&gt;LOAD [Customer ID],&lt;BR /&gt;[Customer status],&lt;BR /&gt;[Store ID],&lt;BR /&gt;[Customer Address]&lt;/P&gt;
&lt;P&gt;FROM Customer_table;&lt;/P&gt;
&lt;P&gt;Store:&lt;BR /&gt;LOAD Distinct [Store ID] &lt;BR /&gt;Resident TAC;&lt;/P&gt;
&lt;P&gt;Left Joins (Store)&lt;BR /&gt;LOAD [Store ID],&lt;BR /&gt;[Store Name],&lt;BR /&gt;[Store Type]&lt;/P&gt;
&lt;P&gt;FROM Store;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Aug 2023 22:21:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Multiple-connected-tables-with-a-look-up-table/m-p/2099297#M89999</guid>
      <dc:creator>BrunPierre</dc:creator>
      <dc:date>2023-08-01T22:21:08Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple connected tables with a look up table</title>
      <link>https://community.qlik.com/t5/App-Development/Multiple-connected-tables-with-a-look-up-table/m-p/2099562#M90020</link>
      <description>&lt;P&gt;Awesome.&amp;nbsp; Thank you!&lt;/P&gt;</description>
      <pubDate>Wed, 02 Aug 2023 13:26:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Multiple-connected-tables-with-a-look-up-table/m-p/2099562#M90020</guid>
      <dc:creator>SI_NY02</dc:creator>
      <dc:date>2023-08-02T13:26:00Z</dc:date>
    </item>
  </channel>
</rss>

