<?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: Breaking Intervals in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Breaking-Intervals/m-p/845487#M1013278</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;is the reason why you want to join is because you need to include other fields ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you want o create another entry then you should use concatenate instead of joining the data &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 14 Jul 2015 18:40:54 GMT</pubDate>
    <dc:creator>ramoncova06</dc:creator>
    <dc:date>2015-07-14T18:40:54Z</dc:date>
    <item>
      <title>Breaking Intervals</title>
      <link>https://community.qlik.com/t5/QlikView/Breaking-Intervals/m-p/845485#M1013276</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have 2 data sets one have the date+interval records against each ID and there is another file that also have the same data in the same format. Now i want to join let's say table A to the table B wherein both the intervals are different. Now while i am able to break the date and time into time intervals but not able to join due to non unique data. Can somebody please help me to get out of this asap.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the sample data-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table A&lt;/P&gt;&lt;P&gt;Login ID&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Start Time&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; End Time&lt;/P&gt;&lt;P&gt;2222&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 04/15/2015 09:45:00 AM&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="font-size: 13.3333330154419px;"&gt;04/15/2015 10:55:00 AM&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;Table B&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;Login ID&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Start Time&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; End Time&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;2222&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 04/15/2015 10:05:00 AM&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="font-size: 13.3333330154419px;"&gt;04/15/2015 10:15:00 AM&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;Let me know just in case the inputs are not sufficient.&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;Thanks!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Apr 2015 06:17:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Breaking-Intervals/m-p/845485#M1013276</guid>
      <dc:creator />
      <dc:date>2015-04-16T06:17:07Z</dc:date>
    </item>
    <item>
      <title>Re: Breaking Intervals</title>
      <link>https://community.qlik.com/t5/QlikView/Breaking-Intervals/m-p/845486#M1013277</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You will be able to join on Login ID&amp;nbsp; if you rename the Start Time and End Time fields in TableB, like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LoginID,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; StartTime,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; EndTime&lt;/P&gt;&lt;P&gt;From TableA;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;JOIN &lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LoginID,&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; StartTime as StartTimeB,&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; EndTime as EndTimeB&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;From TableB;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Jul 2015 17:37:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Breaking-Intervals/m-p/845486#M1013277</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2015-07-14T17:37:30Z</dc:date>
    </item>
    <item>
      <title>Re: Breaking Intervals</title>
      <link>https://community.qlik.com/t5/QlikView/Breaking-Intervals/m-p/845487#M1013278</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;is the reason why you want to join is because you need to include other fields ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you want o create another entry then you should use concatenate instead of joining the data &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Jul 2015 18:40:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Breaking-Intervals/m-p/845487#M1013278</guid>
      <dc:creator>ramoncova06</dc:creator>
      <dc:date>2015-07-14T18:40:54Z</dc:date>
    </item>
    <item>
      <title>Re: Breaking Intervals</title>
      <link>https://community.qlik.com/t5/QlikView/Breaking-Intervals/m-p/845488#M1013279</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what i am looking is as follows -&lt;/P&gt;&lt;P&gt;If i am selecting date (1 Jan 15) then i should be getting the data from both the tables by the intervals.&lt;/P&gt;&lt;P&gt;if this can be resolved, it would be a great help. i am still using it in QV but it cannot be an automation, i am doing it manually in QV till now.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Aug 2015 09:32:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Breaking-Intervals/m-p/845488#M1013279</guid>
      <dc:creator />
      <dc:date>2015-08-10T09:32:39Z</dc:date>
    </item>
  </channel>
</rss>

