<?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: Common time axis for different Dimensions in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Common-time-axis-for-different-Dimensions/m-p/2130548#M91919</link>
    <description>&lt;P&gt;Hey Mark,&lt;/P&gt;
&lt;P&gt;I already considered usiing a canonical date, but this seems to work only when all three tables share the same key - which, unfortunately, is not the case 🥲&lt;/P&gt;</description>
    <pubDate>Sat, 21 Oct 2023 08:24:17 GMT</pubDate>
    <dc:creator>alliedarmour</dc:creator>
    <dc:date>2023-10-21T08:24:17Z</dc:date>
    <item>
      <title>Common time axis for different Dimensions</title>
      <link>https://community.qlik.com/t5/App-Development/Common-time-axis-for-different-Dimensions/m-p/2130532#M91916</link>
      <description>&lt;P&gt;Hello!&lt;/P&gt;
&lt;P&gt;So, I'm trying to solve the following problem: I have 3 tables which I need to bring together in a type of master calendar.&amp;nbsp; Per user requirement, these three should have one (common) selectable time axis (month and year).&lt;/P&gt;
&lt;P&gt;Table 1 and 2 contain the same type of key, but table 2 is missing some keys that exist in table 1. Table 3 has an enitrely different jey. Table 2 contains keys from Table 1 and Table 2.&lt;/P&gt;
&lt;P&gt;So, my idea was to build a "semi master calendar" for those tables by concatenating them &amp;nbsp;and use their time attributes with a common name like this:&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;MasterKalender:&lt;/STRONG&gt;&lt;BR /&gt;Load Distinct &lt;BR /&gt;Klinik_FA_Key,&lt;BR /&gt;Null() As CO_VK_Key,&lt;BR /&gt;Entlassungsmonat As Month, &lt;BR /&gt;Entlassungsjahr As Year&lt;BR /&gt;Resident T1;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Concatenate (MasterKalender)&lt;/STRONG&gt;&lt;BR /&gt;Load Distinct &lt;BR /&gt;Klinik_FA_Key,&lt;BR /&gt;CO_VK_Key,&lt;BR /&gt;Periode As Month, &lt;BR /&gt;Geschäftsjahr As Year&lt;BR /&gt;Resident T2;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Concatenate (MasterKalender)&lt;/STRONG&gt;&lt;BR /&gt;Load Distinct&lt;BR /&gt;Null() As Klinik_FA_Key,&lt;BR /&gt;CO_VK_Key,&lt;BR /&gt;Personal_Monat AS Month,&lt;BR /&gt;Personal_Jahr As Year&lt;BR /&gt;Resident T3;&lt;/P&gt;
&lt;P&gt;As you see, only table 2 contains both key fields without either being Null().&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This approach is kinda working (numbers seem to be correct), but creates a synthetic key cause now the master calendar and T2 contain the same field-/keyset:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Synthethic Key" style="width: 657px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/118600iA2F9E553D46DC878/image-size/large?v=v2&amp;amp;px=999" role="button" title="synkey.PNG" alt="Synthethic Key" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;Synthethic Key&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;I can't delete them from T2 cause I need them as relations to Table 1 and Table 3, but neither I can delete them on the master calendar.&lt;/P&gt;
&lt;P&gt;Is there any other solution or option without a synthetic key? I know they're not necessarily a bad thing but I rather tend to avoid them, if possible.&lt;/P&gt;
&lt;P&gt;Any idea what I could do to fix this?&lt;/P&gt;
&lt;P&gt;Thanks and have a great weekend!&lt;/P&gt;</description>
      <pubDate>Fri, 20 Oct 2023 23:29:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Common-time-axis-for-different-Dimensions/m-p/2130532#M91916</guid>
      <dc:creator>alliedarmour</dc:creator>
      <dc:date>2023-10-20T23:29:20Z</dc:date>
    </item>
    <item>
      <title>Re: Common time axis for different Dimensions</title>
      <link>https://community.qlik.com/t5/App-Development/Common-time-axis-for-different-Dimensions/m-p/2130545#M91918</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I think you have the right thought, take a read through this helps with this sort of calendar.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.qlik.com/t5/Design/Canonical-Date/ba-p/1463578" target="_blank"&gt;https://community.qlik.com/t5/Design/Canonical-Date/ba-p/1463578&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 21 Oct 2023 07:36:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Common-time-axis-for-different-Dimensions/m-p/2130545#M91918</guid>
      <dc:creator>Mark_Little</dc:creator>
      <dc:date>2023-10-21T07:36:11Z</dc:date>
    </item>
    <item>
      <title>Re: Common time axis for different Dimensions</title>
      <link>https://community.qlik.com/t5/App-Development/Common-time-axis-for-different-Dimensions/m-p/2130548#M91919</link>
      <description>&lt;P&gt;Hey Mark,&lt;/P&gt;
&lt;P&gt;I already considered usiing a canonical date, but this seems to work only when all three tables share the same key - which, unfortunately, is not the case 🥲&lt;/P&gt;</description>
      <pubDate>Sat, 21 Oct 2023 08:24:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Common-time-axis-for-different-Dimensions/m-p/2130548#M91919</guid>
      <dc:creator>alliedarmour</dc:creator>
      <dc:date>2023-10-21T08:24:17Z</dc:date>
    </item>
  </channel>
</rss>

