<?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: Match data to an interval in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Match-data-to-an-interval/m-p/130450#M764041</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello&lt;/P&gt;&lt;P&gt;ass this to your code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;inner join intervalmatch(AbsenceDate,Pupil) load Start,End,Pupil&lt;/P&gt;&lt;P&gt;resident Enrollment;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 11 Jul 2018 07:31:47 GMT</pubDate>
    <dc:creator>olivierrobin</dc:creator>
    <dc:date>2018-07-11T07:31:47Z</dc:date>
    <item>
      <title>Match data to an interval</title>
      <link>https://community.qlik.com/t5/QlikView/Match-data-to-an-interval/m-p/130449#M764040</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi! I'm having a hard time getting my head around interval match in QlikView. I need to add data to one table based on an interval and a person id in another table. I could do this in seconds with SQL or one of our ETL tools, but I need to do it in QlikView and the data is stored in two different SQL databases.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Below is some simplified sample data. After that I will describe what I would like to achieve.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This data consists of two tables. &lt;STRONG&gt;Enrollment&lt;/STRONG&gt; tells us which school each pupil was enrolled in and when. &lt;STRONG&gt;Absence&lt;/STRONG&gt; tells us the amount of absence each pupil has had and on which date that occurred.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Enrollment:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;LOAD * inline&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;[Pupil, Start, End, School&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Pup01, 2015-08-01, 2017-07-31, School01&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Pup01, 2017-08-01, 2018-06-30, School02&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Pup02, 2015-08-01, 2017-09-31, School02&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Pup02, 2017-10-01, 2018-06-30, School03&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;];&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Absence:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;LOAD * inline&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;[Pupil, AbsenceDate, Amount&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Pup01, 2018-07-01, 30&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Pup01, 2018-02-01, 45&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Pup02, 2017-04-15, 15&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Pup02, 2018-04-01, 15&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;];&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the end, I would like to have &lt;STRONG&gt;one&lt;/STRONG&gt; table that looks like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;+-------+-------------+--------+-----------------------------+&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;| Pupil | AbsenceDate | Amount | Pupil's school on this date |&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px; font-family: 'courier new', courier;"&gt;+-------+-------------+--------+-----------------------------+&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px; font-family: 'courier new', courier;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, sans-serif;"&gt;I obviously need to match the Pupil fields and interval match AbsenceDate to Start and End and return the School field. I just can't seem to figure out how...&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt; &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/sad.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help would be greatly appreciated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Match-data-to-an-interval/m-p/130449#M764040</guid>
      <dc:creator>sir_ogrim</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Match data to an interval</title>
      <link>https://community.qlik.com/t5/QlikView/Match-data-to-an-interval/m-p/130450#M764041</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello&lt;/P&gt;&lt;P&gt;ass this to your code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;inner join intervalmatch(AbsenceDate,Pupil) load Start,End,Pupil&lt;/P&gt;&lt;P&gt;resident Enrollment;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jul 2018 07:31:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Match-data-to-an-interval/m-p/130450#M764041</guid>
      <dc:creator>olivierrobin</dc:creator>
      <dc:date>2018-07-11T07:31:47Z</dc:date>
    </item>
    <item>
      <title>Re: Match data to an interval</title>
      <link>https://community.qlik.com/t5/QlikView/Match-data-to-an-interval/m-p/130451#M764042</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Please try this Code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000080;"&gt;&lt;EM&gt;Enrollment:&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="color: #000080;"&gt;LOAD * inline&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="color: #000080;"&gt;[Pupil, Start, End, School&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="color: #000080;"&gt;Pup01, 2015-08-01, 2017-07-31, School01&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="color: #000080;"&gt;Pup01, 2017-08-01, 2018-06-30, School02&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="color: #000080;"&gt;Pup02, 2015-08-01, 2017-09-31, School02&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="color: #000080;"&gt;Pup02, 2017-10-01, 2018-06-30, School03&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="color: #000080;"&gt;];&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="color: #000080;"&gt;Absence:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="color: #000080;"&gt;LOAD AbsenceDate, Amount inline&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="color: #000080;"&gt;[Pupil, AbsenceDate, Amount&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="color: #000080;"&gt;Pup01, 2018-07-01, 30&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="color: #000080;"&gt;Pup01, 2018-02-01, 45&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="color: #000080;"&gt;Pup02, 2017-04-15, 15&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="color: #000080;"&gt;Pup02, 2018-04-01, 15&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="color: #000080;"&gt;];&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="color: #000080;"&gt;Final_Table:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="color: #000080;"&gt;INTERVALMATCH (AbsenceDate) JOIN LOAD Start, End RESIDENT Enrollment;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="color: #000080;"&gt;Join (Absence) LOAD distinct * RESIDENT Enrollment;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000080;"&gt;&lt;EM&gt;DROP TABLE Enrollment;&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/207534_Capture.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture1.PNG" class="jive-image image-2" src="https://community.qlik.com/legacyfs/online/207535_Capture1.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jul 2018 08:02:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Match-data-to-an-interval/m-p/130451#M764042</guid>
      <dc:creator>qlikviewwizard</dc:creator>
      <dc:date>2018-07-11T08:02:56Z</dc:date>
    </item>
    <item>
      <title>Re: Match data to an interval</title>
      <link>https://community.qlik.com/t5/QlikView/Match-data-to-an-interval/m-p/130452#M764043</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi and thank you for your response!&lt;/P&gt;&lt;P&gt;This code unfortunately seems to mix up the data. In the result &lt;STRONG&gt;Pupil&lt;/STRONG&gt; Pup01 gets the &lt;STRONG&gt;AbsenceDate&lt;/STRONG&gt; and &lt;STRONG&gt;Amount&lt;/STRONG&gt; that belongs to Pup02 in the &lt;STRONG&gt;Absence&lt;/STRONG&gt; table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jul 2018 08:15:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Match-data-to-an-interval/m-p/130452#M764043</guid>
      <dc:creator>sir_ogrim</dc:creator>
      <dc:date>2018-07-11T08:15:43Z</dc:date>
    </item>
    <item>
      <title>Re: Match data to an interval</title>
      <link>https://community.qlik.com/t5/QlikView/Match-data-to-an-interval/m-p/130453#M764044</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is your expected output?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jul 2018 08:17:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Match-data-to-an-interval/m-p/130453#M764044</guid>
      <dc:creator>qlikviewwizard</dc:creator>
      <dc:date>2018-07-11T08:17:17Z</dc:date>
    </item>
    <item>
      <title>Re: Match data to an interval</title>
      <link>https://community.qlik.com/t5/QlikView/Match-data-to-an-interval/m-p/130454#M764045</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;The expected output would look like this:&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Expected_Output:&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD Pupil, AbsenceDate, Amount, &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;School&lt;/SPAN&gt; inline&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;[Pupil, AbsenceDate, Amount, School&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Pup01, 2018-07-01, 30, null&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Pup01, 2018-02-01, 45, School02&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Pup02, 2017-04-15, 15, School02&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Pup02, 2018-04-01, 15, School03&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;];&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jul 2018 08:22:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Match-data-to-an-interval/m-p/130454#M764045</guid>
      <dc:creator>sir_ogrim</dc:creator>
      <dc:date>2018-07-11T08:22:48Z</dc:date>
    </item>
    <item>
      <title>Re: Match data to an interval</title>
      <link>https://community.qlik.com/t5/QlikView/Match-data-to-an-interval/m-p/130455#M764046</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;finally, here is the code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;inner join intervalmatch(AbsenceDate,Pupil) load Start,End,Pupil&lt;/P&gt;&lt;P&gt;resident Enrollment;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;final_table:&lt;/P&gt;&lt;P&gt;NoConcatenate&lt;/P&gt;&lt;P&gt;load Pupil,AbsenceDate,Amount,Start,End&lt;/P&gt;&lt;P&gt;resident Absence;&lt;/P&gt;&lt;P&gt;left join(final_table)&lt;/P&gt;&lt;P&gt;load Pupil,Start,End,School&lt;/P&gt;&lt;P&gt;resident Enrollment;&lt;/P&gt;&lt;P&gt;drop table Enrollment;&lt;/P&gt;&lt;P&gt;drop table Absence;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jul 2018 08:33:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Match-data-to-an-interval/m-p/130455#M764046</guid>
      <dc:creator>olivierrobin</dc:creator>
      <dc:date>2018-07-11T08:33:07Z</dc:date>
    </item>
    <item>
      <title>Re: Match data to an interval</title>
      <link>https://community.qlik.com/t5/QlikView/Match-data-to-an-interval/m-p/130456#M764047</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Please check now.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Absence:&lt;/P&gt;&lt;P&gt;LOAD * inline [Pupil, AbsenceDate, Amount&lt;/P&gt;&lt;P&gt;Pup01, 2018-07-01, 30&lt;/P&gt;&lt;P&gt;Pup01, 2018-02-01, 45&lt;/P&gt;&lt;P&gt;Pup02, 2017-04-15, 15&lt;/P&gt;&lt;P&gt;Pup02, 2018-04-01, 15&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Enrollment:&lt;/P&gt;&lt;P&gt;LOAD *&amp;nbsp; inline [Pupil, Start, End, School&lt;/P&gt;&lt;P&gt;Pup01, 2015-08-01, 2017-07-31, School01&lt;/P&gt;&lt;P&gt;Pup01, 2017-08-01, 2018-06-30, School02&lt;/P&gt;&lt;P&gt;Pup02, 2015-08-01, 2017-09-31, School02&lt;/P&gt;&lt;P&gt;Pup02, 2017-10-01, 2018-06-30, School03&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Final_Table:&lt;/P&gt;&lt;P&gt;INTERVALMATCH (AbsenceDate) JOIN LOAD Start, End RESIDENT Enrollment;&lt;/P&gt;&lt;P&gt;Join (Absence) LOAD distinct * RESIDENT Enrollment;&lt;/P&gt;&lt;P&gt;DROP TABLE Enrollment;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/207543_Capture.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jul 2018 08:35:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Match-data-to-an-interval/m-p/130456#M764047</guid>
      <dc:creator>qlikviewwizard</dc:creator>
      <dc:date>2018-07-11T08:35:12Z</dc:date>
    </item>
    <item>
      <title>Re: Match data to an interval</title>
      <link>https://community.qlik.com/t5/QlikView/Match-data-to-an-interval/m-p/130457#M764048</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There it is indeed! Thank you very much! This solved the the problem and produced a finished table that will be very quick to access. Thank you for the help!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jul 2018 08:40:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Match-data-to-an-interval/m-p/130457#M764048</guid>
      <dc:creator>sir_ogrim</dc:creator>
      <dc:date>2018-07-11T08:40:27Z</dc:date>
    </item>
    <item>
      <title>Re: Match data to an interval</title>
      <link>https://community.qlik.com/t5/QlikView/Match-data-to-an-interval/m-p/130458#M764049</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you! This solution also includes the row where there is no Scool match. That is very nice. Thank you for your help!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jul 2018 08:48:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Match-data-to-an-interval/m-p/130458#M764049</guid>
      <dc:creator>sir_ogrim</dc:creator>
      <dc:date>2018-07-11T08:48:46Z</dc:date>
    </item>
    <item>
      <title>Re: Match data to an interval</title>
      <link>https://community.qlik.com/t5/QlikView/Match-data-to-an-interval/m-p/130459#M764050</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this is working for me:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Enrollment:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;LOAD * inline&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt; [Pupil, Start, End, School&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt; Pup01, 2015-08-01, 2017-07-31, School01&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt; Pup01, 2017-08-01, 2018-06-30, School02&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt; Pup02, 2015-08-01, 2017-09-31, School02&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt; Pup02, 2017-10-01, 2018-06-30, School03&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt; ];&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Absence:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;LOAD * inline&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt; [Pupil, AbsenceDate, Amount&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt; Pup01, 2018-07-01, 30&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt; Pup01, 2018-02-01, 45&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt; Pup02, 2017-04-15, 15&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt; Pup02, 2018-04-01, 15&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt; ];&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Final:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; INTERVALMATCH(AbsenceDate, Pupil) LOAD Start, End, Pupil RESIDENT Enrollment;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Left JOIN LOAD Pupil, Start, End, School Resident Enrollment;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; LEFT JOIN LOAD * Resident Absence;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; DROP FIELDS Start, End;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;DROP TABLES Absence, Enrollment;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Hope it helps,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Roger&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jul 2018 09:03:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Match-data-to-an-interval/m-p/130459#M764050</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-07-11T09:03:17Z</dc:date>
    </item>
    <item>
      <title>Re: Match data to an interval</title>
      <link>https://community.qlik.com/t5/QlikView/Match-data-to-an-interval/m-p/130460#M764051</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi and thanks for your response! Not only does this work, but it is also a bit easier for me to understand as it is rather similar to the basic intervalmatch examples where you use only one key (like a date that is compared to a date interval). Thank you for this helpful addition!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jul 2018 09:11:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Match-data-to-an-interval/m-p/130460#M764051</guid>
      <dc:creator>sir_ogrim</dc:creator>
      <dc:date>2018-07-11T09:11:52Z</dc:date>
    </item>
    <item>
      <title>Re: Match data to an interval</title>
      <link>https://community.qlik.com/t5/QlikView/Match-data-to-an-interval/m-p/130461#M764052</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;STRONG style="font-size: 11.7px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;A href="https://community.qlik.com/people/sir_ogrim"&gt;sir_ogrim&lt;/A&gt; &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;I used JOIN instead of Left Join as I don't know initial requirement. Happy to part of solving this.&lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jul 2018 09:26:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Match-data-to-an-interval/m-p/130461#M764052</guid>
      <dc:creator>qlikviewwizard</dc:creator>
      <dc:date>2018-07-11T09:26:48Z</dc:date>
    </item>
  </channel>
</rss>

