<?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: Island table in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Island-table/m-p/1573889#M41813</link>
    <description>Adding to to Gysbert&lt;BR /&gt;&lt;BR /&gt;if you have more than 1 calendar field (sales date, booking date) it is very flxible to use canonical date technique.&lt;BR /&gt;&lt;A href="https://community.qlik.com/t5/Qlik-Design-Blog/Canonical-Date/ba-p/1463578" target="_blank"&gt;https://community.qlik.com/t5/Qlik-Design-Blog/Canonical-Date/ba-p/1463578&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Fri, 26 Apr 2019 13:53:50 GMT</pubDate>
    <dc:creator>dplr-rn</dc:creator>
    <dc:date>2019-04-26T13:53:50Z</dc:date>
    <item>
      <title>Island table</title>
      <link>https://community.qlik.com/t5/App-Development/Island-table/m-p/1573865#M41810</link>
      <description>&lt;P&gt;I&amp;nbsp;have a &lt;STRONG&gt;calendar&lt;/STRONG&gt; table that has Date and its info like weekNo, Month, Quarter etc..&lt;/P&gt;&lt;P&gt;I&amp;nbsp;have another fact table - &lt;STRONG&gt;Sales&lt;/STRONG&gt; that has ID, SalesDate, BookingDate and other info. How do I create association between these 2 tables? Since i&amp;nbsp;have more than one date field in my table its creates circular reference if I try to join.&lt;/P&gt;&lt;P&gt;Basically I&amp;nbsp;need ID, SalesDate, BookingDate,SalesWeek, SalesMonth, Salesmonth, BookingWeek, BookingMonth, Bookingmonth in the&amp;nbsp;&lt;STRONG&gt;Sales&lt;/STRONG&gt; table.&lt;/P&gt;&lt;P&gt;Could someone please help?&lt;/P&gt;</description>
      <pubDate>Fri, 26 Apr 2019 13:17:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Island-table/m-p/1573865#M41810</guid>
      <dc:creator>GaneshLakshman</dc:creator>
      <dc:date>2019-04-26T13:17:00Z</dc:date>
    </item>
    <item>
      <title>Re: Island table</title>
      <link>https://community.qlik.com/t5/App-Development/Island-table/m-p/1573875#M41812</link>
      <description>&lt;P&gt;Perhaps the solution is to simply create the extra fields you need in the Sales table itself from the SalesDate and BookingDate and not use a calendar table at all.&lt;/P&gt;</description>
      <pubDate>Fri, 26 Apr 2019 13:35:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Island-table/m-p/1573875#M41812</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2019-04-26T13:35:00Z</dc:date>
    </item>
    <item>
      <title>Re: Island table</title>
      <link>https://community.qlik.com/t5/App-Development/Island-table/m-p/1573889#M41813</link>
      <description>Adding to to Gysbert&lt;BR /&gt;&lt;BR /&gt;if you have more than 1 calendar field (sales date, booking date) it is very flxible to use canonical date technique.&lt;BR /&gt;&lt;A href="https://community.qlik.com/t5/Qlik-Design-Blog/Canonical-Date/ba-p/1463578" target="_blank"&gt;https://community.qlik.com/t5/Qlik-Design-Blog/Canonical-Date/ba-p/1463578&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 26 Apr 2019 13:53:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Island-table/m-p/1573889#M41813</guid>
      <dc:creator>dplr-rn</dc:creator>
      <dc:date>2019-04-26T13:53:50Z</dc:date>
    </item>
    <item>
      <title>Re: Island table</title>
      <link>https://community.qlik.com/t5/App-Development/Island-table/m-p/1574089#M41829</link>
      <description>&lt;P&gt;Thank you so much, I will see if I can do it&lt;/P&gt;</description>
      <pubDate>Sat, 27 Apr 2019 06:11:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Island-table/m-p/1574089#M41829</guid>
      <dc:creator>GaneshLakshman</dc:creator>
      <dc:date>2019-04-27T06:11:50Z</dc:date>
    </item>
    <item>
      <title>Re: Island table</title>
      <link>https://community.qlik.com/t5/App-Development/Island-table/m-p/1574090#M41830</link>
      <description>&lt;P&gt;HI&amp;nbsp;&lt;SPAN&gt;Gysbert and Dilip, canonical date works like a charm, thank you very much.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;But I have one problem after implementing it.&lt;/P&gt;&lt;P&gt;I'm trying to get the numbers for previous year same date but I get zero, not sure if doing it right.&lt;/P&gt;&lt;P&gt;Here is my expression:&lt;/P&gt;&lt;P&gt;This works:&lt;/P&gt;&lt;P&gt;sum({&amp;lt;DateType={"LeadMarketCreatedDate"}, Date={"&amp;gt;=$(vDateFrom) &amp;lt;=$(vDateTo)"}&amp;gt;} LeadFlag)&lt;/P&gt;&lt;P&gt;This doesn't work:&lt;/P&gt;&lt;P&gt;=sum({&amp;lt;DateType={"LeadMarketCreatedDate"}, Date={"&amp;gt;=$(vDateFrom_1) &amp;lt;=$(vDateTo_1)"}&amp;gt;} LeadFlag)&lt;/P&gt;&lt;P&gt;vDateFrom_1 is:&amp;nbsp; num((Date(AddYears(min(Date), -1))))&lt;/P&gt;&lt;P&gt;vDateTo_1 is:&amp;nbsp; num((Date(AddYears(max(Date), -1))))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Ganesh&lt;/P&gt;</description>
      <pubDate>Sat, 27 Apr 2019 15:10:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Island-table/m-p/1574090#M41830</guid>
      <dc:creator>GaneshLakshman</dc:creator>
      <dc:date>2019-04-27T15:10:27Z</dc:date>
    </item>
  </channel>
</rss>

