<?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: Modify my Data Model in Management &amp; Governance</title>
    <link>https://community.qlik.com/t5/Management-Governance/Modify-my-Data-Model/m-p/1505939#M11827</link>
    <description>&lt;P&gt;Hi Erebits,&lt;/P&gt;&lt;P&gt;You can:&lt;/P&gt;&lt;P&gt;1) Concatenate the project fact tables in one table.&lt;/P&gt;&lt;P&gt;Use the Concatenate command.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2) Create a LinkTable to do that in Qlik. In general, linktable it´s a table that link the common fields in the fact table.&lt;/P&gt;&lt;PRE&gt;FactTable1:
Load &amp;lt;fields&amp;gt;,
          &amp;lt;common field1&amp;gt; &amp;amp;'/'&amp;amp; &amp;lt;common field2&amp;gt;&amp;nbsp; &amp;nbsp;as key_link
From &amp;lt;...&amp;gt;;

FactTable2:
Load &amp;lt;fields&amp;gt;,
           &amp;lt;common field1&amp;gt; &amp;amp;'/'&amp;amp; &amp;lt;common field2&amp;gt;&amp;nbsp; &amp;nbsp;as key_link
From &amp;lt;...&amp;gt;;

LinkTable:
Load key_link, &amp;lt;common field1&amp;gt;, &amp;lt;common field2&amp;gt;, ...
Resident FactTable1;

LinkTable:
Load key_link, &amp;lt;common field1&amp;gt;, &amp;lt;common field2&amp;gt;, ...
Resident FactTable2;

DROP FIELDS &amp;lt;common field1&amp;gt;, &amp;lt;common field2&amp;gt; FROM FactTable1, FactTable2;&amp;nbsp;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Depending the size and the use, you can choose the better way to do that.&lt;/P&gt;&lt;P&gt;See more in&amp;nbsp;&lt;A href="http://www.qliktips.com/2011/05/rules-for-creating-keylink-table-in.html" target="_blank"&gt;http://www.qliktips.com/2011/05/rules-for-creating-keylink-table-in.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Good Luck,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Pedro&lt;/P&gt;</description>
    <pubDate>Wed, 14 Nov 2018 09:34:54 GMT</pubDate>
    <dc:creator>pedrobergo</dc:creator>
    <dc:date>2018-11-14T09:34:54Z</dc:date>
    <item>
      <title>Modify my Data Model</title>
      <link>https://community.qlik.com/t5/Management-Governance/Modify-my-Data-Model/m-p/124468#M1974</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all, &lt;/P&gt;&lt;P&gt;I have a data model working fine in my Qlik App. But now, I have a new requirement that I believe (not really sure) will need a modify my current model:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="jive-image image-1" height="188" src="https://community.qlik.com/legacyfs/online/217986_pastedImage_0.png" style="width: 330px; height: 188.419px;" width="330" /&gt;&lt;/P&gt;&lt;P&gt;The new requirement is create a consolidation pie chart with all types of Projects (A + B + C), I want unify in a new dimension: "Group", alowin navigation from Group to different Projects.&lt;/P&gt;&lt;P&gt; A new relationship between Projects is not possibble because a circular reference will appears. Neither is it possible unify&lt;STRONG class="b5"&gt; &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;projects cause they have different data. So, I think to modify my model this way:&lt;/P&gt;&lt;P class="b5"&gt;&lt;/P&gt;&lt;P class="b5"&gt;&lt;IMG alt="" class="jive-image image-2" height="200" src="https://community.qlik.com/legacyfs/online/218024_pastedImage_3.png" style="width: 289px; height: 199.503px;" width="289" /&gt;&lt;/P&gt;&lt;P class="b5"&gt;&lt;/P&gt;&lt;P class="b5"&gt;All Money Exchange will have the same data, but i don't know another wave to do it. Anybody can check my solution or give me a better idea?&lt;/P&gt;&lt;P class="b5"&gt;&lt;/P&gt;&lt;P class="b5"&gt;Thanks for advance.&lt;/P&gt;&lt;P class="b5"&gt;Jorge&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Nov 2018 19:18:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Management-Governance/Modify-my-Data-Model/m-p/124468#M1974</guid>
      <dc:creator>Bukan4x4</dc:creator>
      <dc:date>2018-11-09T19:18:30Z</dc:date>
    </item>
    <item>
      <title>Re: Modify my Data Model</title>
      <link>https://community.qlik.com/t5/Management-Governance/Modify-my-Data-Model/m-p/1505939#M11827</link>
      <description>&lt;P&gt;Hi Erebits,&lt;/P&gt;&lt;P&gt;You can:&lt;/P&gt;&lt;P&gt;1) Concatenate the project fact tables in one table.&lt;/P&gt;&lt;P&gt;Use the Concatenate command.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2) Create a LinkTable to do that in Qlik. In general, linktable it´s a table that link the common fields in the fact table.&lt;/P&gt;&lt;PRE&gt;FactTable1:
Load &amp;lt;fields&amp;gt;,
          &amp;lt;common field1&amp;gt; &amp;amp;'/'&amp;amp; &amp;lt;common field2&amp;gt;&amp;nbsp; &amp;nbsp;as key_link
From &amp;lt;...&amp;gt;;

FactTable2:
Load &amp;lt;fields&amp;gt;,
           &amp;lt;common field1&amp;gt; &amp;amp;'/'&amp;amp; &amp;lt;common field2&amp;gt;&amp;nbsp; &amp;nbsp;as key_link
From &amp;lt;...&amp;gt;;

LinkTable:
Load key_link, &amp;lt;common field1&amp;gt;, &amp;lt;common field2&amp;gt;, ...
Resident FactTable1;

LinkTable:
Load key_link, &amp;lt;common field1&amp;gt;, &amp;lt;common field2&amp;gt;, ...
Resident FactTable2;

DROP FIELDS &amp;lt;common field1&amp;gt;, &amp;lt;common field2&amp;gt; FROM FactTable1, FactTable2;&amp;nbsp;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Depending the size and the use, you can choose the better way to do that.&lt;/P&gt;&lt;P&gt;See more in&amp;nbsp;&lt;A href="http://www.qliktips.com/2011/05/rules-for-creating-keylink-table-in.html" target="_blank"&gt;http://www.qliktips.com/2011/05/rules-for-creating-keylink-table-in.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Good Luck,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Pedro&lt;/P&gt;</description>
      <pubDate>Wed, 14 Nov 2018 09:34:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Management-Governance/Modify-my-Data-Model/m-p/1505939#M11827</guid>
      <dc:creator>pedrobergo</dc:creator>
      <dc:date>2018-11-14T09:34:54Z</dc:date>
    </item>
  </channel>
</rss>

