<?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 Forget about IntervalMatch in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Forget-about-IntervalMatch/m-p/206612#M1207384</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You may be don't know, but autonumber generates the same number for the same content. To avoid duplication I use DISTINCT for VacationToDate. What duplication are you talking about? Run the script and check frequencies. This post was not about NF, if you want to discuss it we can open another topic. This Vacation/Period splitting depends on requirement.&lt;/P&gt;&lt;P&gt;Synthetic key kills more memory than autonumber. And for 10 millions vacation during 10 years this synthetic key will grab a half of your application.&lt;/P&gt;&lt;P&gt;In my real application by doing this I've reduced my QVW from 15M to 10M and performance was raised from 10 sec to 1 sec for a chart, may be less.&lt;/P&gt;&lt;P&gt;In my opinion the less in-memory application the better moreover if it is raising the application performance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 10 Dec 2009 07:23:42 GMT</pubDate>
    <dc:creator />
    <dc:date>2009-12-10T07:23:42Z</dc:date>
    <item>
      <title>Forget about IntervalMatch</title>
      <link>https://community.qlik.com/t5/QlikView/Forget-about-IntervalMatch/m-p/206610#M1207382</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Let's review different pros and cons.&lt;/P&gt;&lt;P&gt;Imagine that we have employee Vacations and a company Calendar, like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE ___default_attr="plain" class="jive_text_macro jive_macro_code" jivemacro="code"&gt;SET DateFormat='M/D/YYYY';&lt;BR /&gt;Vacation:&lt;BR /&gt;Load * Inline [&lt;BR /&gt;EmployeeId, StartDate, EndDate&lt;BR /&gt;1,1/1/2009, 1/15/2009&lt;BR /&gt;2,1/10/2009,1/14/2009&lt;BR /&gt;3,1/2/2009,1/4/2009&lt;BR /&gt;3,1/15/2009,1/25/2009&lt;BR /&gt;4,1/1/2009, 1/15/2009&lt;BR /&gt;];&lt;BR /&gt;Let vStartDate = num(date('1/1/2009'));&lt;BR /&gt;Let vEndDate = num(date('1/31/2009'));&lt;BR /&gt;&lt;BR /&gt;Calendar:&lt;BR /&gt;load $(vStartDate) + RecNo() - 1 as Date&lt;BR /&gt;autogenerate vEndDate - vStartDate + 1;&lt;BR /&gt;&lt;BR /&gt;left join&lt;BR /&gt;load Date,&lt;BR /&gt; year(Date) as Year,&lt;BR /&gt; month(Date) as Month&lt;BR /&gt;resident Calendar;&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;How to tie Calendar to Vacations? That's right - use IntervalMatch.&lt;/P&gt;&lt;P&gt;We can do this by different ways:&lt;/P&gt;&lt;P&gt;1)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE ___default_attr="plain" class="jive_text_macro jive_macro_code" jivemacro="code"&gt;left join (Vacation)&lt;BR /&gt;intervalmatch (Date) load StartDate, EndDate resident Vacation;&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;pros: no surrogate keys&lt;/P&gt;&lt;P&gt;cons: vacation record duplication for number of dates in the range&lt;/P&gt;&lt;P&gt;2)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE ___default_attr="plain" class="jive_text_macro jive_macro_code" jivemacro="code"&gt;VacationToDate:&lt;BR /&gt;intervalmatch (Date) load StartDate, EndDate resident Vacation;&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;pros: no duplications, cross-reference table, easy to read the logic&lt;/P&gt;&lt;P&gt;cons: surrogate key (hate surrogate keys)&lt;/P&gt;&lt;P&gt;3) But there is another way to do this without IntervalMatch. If you need something good, do it by yourself &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE ___default_attr="plain" class="jive_text_macro jive_macro_code" jivemacro="code"&gt;left join (Vacation)&lt;BR /&gt;load StartDate&lt;BR /&gt; ,EndDate&lt;BR /&gt; ,autonumber(StartDate &amp;amp; '-' &amp;amp; EndDate) as DateRangeId&lt;BR /&gt;resident Vacation;&lt;BR /&gt;&lt;BR /&gt;VacationToDate:&lt;BR /&gt;load distinct&lt;BR /&gt; DateRangeId,&lt;BR /&gt; StartDate + IterNo() - 1 as Date&lt;BR /&gt;resident Vacation&lt;BR /&gt;while StartDate + IterNo() - 1 &amp;lt;= EndDate;&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;pros: all pros mentioned above&lt;/P&gt;&lt;P&gt;cons: no&lt;/P&gt;&lt;P&gt;Good luck&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Dec 2009 01:22:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Forget-about-IntervalMatch/m-p/206610#M1207382</guid>
      <dc:creator />
      <dc:date>2009-12-10T01:22:08Z</dc:date>
    </item>
    <item>
      <title>Forget about IntervalMatch</title>
      <link>https://community.qlik.com/t5/QlikView/Forget-about-IntervalMatch/m-p/206611#M1207383</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Note that QlikView's synthetic key approach is doing something very close to what you're doing. You are both creating a unique ID for each combination of start date and end date. You are both tying two tables together using this new ID.&lt;/P&gt;&lt;P&gt;The difference is that you leave the start and end date on the vacation table. The synthetic key approach stores these dates on a separate table. So if fifty employees go on vacation together, you will duplicate the start and end date information for each employee, while the synthetic key approach will only have one copy of the information for all fifty employees. While I don't consider duplicate data of this sort to be much of an issue in QlikView, and indeed sometimes &lt;EM&gt;prefer&lt;/EM&gt; to denormalize, you DID list "record duplication" as a con. So then it is a con of the method you provided as well, and one that you missed (or perhaps dismissed as irrelevant in QlikView, which I would normally agree with).&lt;/P&gt;&lt;P&gt;Now, we &lt;EM&gt;could&lt;/EM&gt; avoid record duplication while still avoiding synthetic keys by doing this:&lt;/P&gt;&lt;P style="padding-left:30px;"&gt;Period:&lt;BR /&gt;load distinct&lt;BR /&gt; autonumber(StartDate &amp;amp; '-' &amp;amp; EndDate) as DateRangeId&lt;BR /&gt;,StartDate&lt;BR /&gt;,EndDate&lt;BR /&gt;resident Vacation;&lt;/P&gt;&lt;P style="padding-left:30px;"&gt;Vacation2:&lt;BR /&gt;load&lt;BR /&gt; EmployeeId&lt;BR /&gt;,autonumber(StartDate &amp;amp; '-' &amp;amp; EndDate) as DateRangeId&lt;BR /&gt;resident Vacation;&lt;BR /&gt;drop table Vacation;&lt;BR /&gt;rename table Vacation2 to Vacation;&lt;/P&gt;&lt;P style="padding-left:30px;"&gt;VacationToDate:&lt;BR /&gt;load distinct&lt;BR /&gt; DateRangeId,&lt;BR /&gt; StartDate + IterNo() - 1 as Date&lt;BR /&gt;resident Period&lt;BR /&gt;while StartDate + IterNo() - 1 &amp;lt;= EndDate;&lt;/P&gt;&lt;P&gt;I believe you would then say this approach doesn't have a con. But look at the table structure. Our new Period table sits EXACTLY where the synthetic key table sat, and is serving EXACTLY the same role. But since we did everything EXPLICITLY, it's a "real" key instead of a "synthetic" key. Does that matter? Here it does not, or at least I can't think of any down side to leaving the key synthetic. Not all synthetic keys are bad, and I think this particular synthetic key is exactly what is needed. So really, all we've done is written a bunch of script to do explicitly what a much shorter and clearer script would have accomplished.&lt;/P&gt;&lt;P&gt;So in my opinion, the simple intervalmatch with no join is the best approach of those presented.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Dec 2009 05:41:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Forget-about-IntervalMatch/m-p/206611#M1207383</guid>
      <dc:creator>johnw</dc:creator>
      <dc:date>2009-12-10T05:41:58Z</dc:date>
    </item>
    <item>
      <title>Forget about IntervalMatch</title>
      <link>https://community.qlik.com/t5/QlikView/Forget-about-IntervalMatch/m-p/206612#M1207384</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You may be don't know, but autonumber generates the same number for the same content. To avoid duplication I use DISTINCT for VacationToDate. What duplication are you talking about? Run the script and check frequencies. This post was not about NF, if you want to discuss it we can open another topic. This Vacation/Period splitting depends on requirement.&lt;/P&gt;&lt;P&gt;Synthetic key kills more memory than autonumber. And for 10 millions vacation during 10 years this synthetic key will grab a half of your application.&lt;/P&gt;&lt;P&gt;In my real application by doing this I've reduced my QVW from 15M to 10M and performance was raised from 10 sec to 1 sec for a chart, may be less.&lt;/P&gt;&lt;P&gt;In my opinion the less in-memory application the better moreover if it is raising the application performance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Dec 2009 07:23:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Forget-about-IntervalMatch/m-p/206612#M1207384</guid>
      <dc:creator />
      <dc:date>2009-12-10T07:23:42Z</dc:date>
    </item>
    <item>
      <title>Forget about IntervalMatch</title>
      <link>https://community.qlik.com/t5/QlikView/Forget-about-IntervalMatch/m-p/206613#M1207388</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="jive_text_macro jive_macro_quote" jivemacro="quote"&gt;&lt;BR /&gt;orka wrote:What duplication are you talking about? Run the script and check frequencies.&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;When I do that, I can see that both StartDate and EndDate are duplicated when people share the same vacation days, just like I suggested. Actually, it's WORSE than I thought, as it shows FOUR copies each, not the two I expected. Ah, that's caused by a script error. Where you have this:&lt;/P&gt;&lt;P style="padding-left:30px;"&gt;left join (Vacation)&lt;BR /&gt;load StartDate&lt;BR /&gt; ,EndDate&lt;BR /&gt; ,autonumber(StartDate &amp;amp; '-' &amp;amp; EndDate) as DateRangeId&lt;BR /&gt;resident Vacation;&lt;/P&gt;&lt;P&gt;It needs to be this:&lt;/P&gt;&lt;P style="padding-left:30px;"&gt;left join (Vacation)&lt;BR /&gt;load &lt;STRONG&gt;DISTINCT&lt;/STRONG&gt; StartDate&lt;BR /&gt; ,EndDate&lt;BR /&gt; ,autonumber(StartDate &amp;amp; '-' &amp;amp; EndDate) as DateRangeId&lt;BR /&gt;resident Vacation;&lt;/P&gt;&lt;P&gt;That fixed, we're back to the two copies I would expect. "So if fifty employees go on vacation together, you will duplicate the start and end date information for each employee", specifically in the Vacation table. That probably wasn't clear.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;PRE class="jive_text_macro jive_macro_quote" jivemacro="quote"&gt;&lt;BR /&gt;orka wrote:This post was not about NF, if you want to discuss it we can open another topic.&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;OK, the word "denormalize" is unnecessary if you think it's off topic. We'll stick to your wording. In regards to your first intervalmatch solution, you say:&lt;/P&gt;&lt;P style="padding-left:30px;"&gt;"cons: vacation record duplication for number of dates in the range"&lt;/P&gt;&lt;P&gt;In regards to your final solution, I can say:&lt;/P&gt;&lt;P style="padding-left:30px;"&gt;"cons: vacation date range duplication for number of people with identical vacations"&lt;/P&gt;&lt;P&gt;Now the duplication in your final solution is much less significant, I'll admit. But it seems consistent to at least state it, particularly since it may affect OTHER data sets much more significantly. And if data duplication is a stated con, the synthetic key approach doesn't have this con. We could also solve it without using synthetic keys by using the script in my previous post. So two options for avoiding this con.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="jive_text_macro jive_macro_quote" jivemacro="quote"&gt;&lt;BR /&gt;orka wrote:Synthetic key kills more memory than autonumber. And for 10 millions vacation during 10 years this synthetic key will grab a half of your application.&lt;BR /&gt;In my real application by doing this I've reduced my QVW from 15M to 10M and performance was raised from 10 sec to 1 sec for a chart, may be less.&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;THIS is what surprised me. I wouldn't have thought the synthetic key would cause problems AT ALL, much less problems of THIS magnitude. Seemed worth testing.&lt;/P&gt;&lt;P&gt;So I wrote a script that generates 10 million vacations for 500,000 employees over a 10 year period. I'm not sure what sort of chart you're using, but I threw together a big line chart that uses most of the data - for each date, how many employees are on vacation? I started with a fresh copy of QlikView to make sure nothing was cached, then opened up the minimized chart, then checked the CalcTime. I'm told it would be more accurate to write some sort of macro using activedocument.getapplication.getcpumilliseconds, but I figured that might be overkill. Going through the various solutions in order, here's the raw data:&lt;/P&gt;&lt;P style="padding-left:30px;"&gt;load time file KB RAM KB CalcTime&lt;BR /&gt;intervalmatch and join out of memory on a 64-bit machine&lt;BR /&gt;intervalmatch synthetic key 5:19 200,477 387,080 116,312 ms&lt;BR /&gt;your solution fixed 15:26 29,253 106,924 22,938 ms&lt;BR /&gt;my solution 14:01 49,507 77,248 46,000 ms&lt;/P&gt;&lt;P&gt;There is a LOT of information to be gained here. We can see that the intervalmatch solutions ARE terrible, both with a join and with a synthetic key. We can see that your solution DOES solve the problem, both from a memory and chart calculation time perspective. My solution appears to do the same, with significantly less RAM but also with double the CalcTime for the chart. Might be specific to that chart, or it might not. Hard to know.&lt;/P&gt;&lt;P&gt;However, looking over my logs as well, I can see that the Period table in "my solution" compressed 10 million vacations down into about 50,000 distinct vacation date ranges. I just used random vacation dates, so in a real world application, you'd probably see even greater compression due to correlation between the vacation dates of different employees (clustering around holidays and weekends, for instance).&lt;/P&gt;&lt;P&gt;Now, your first two solutions joined your calendar either explicitly (left join) or implicitly (synthetic key) to the full table of 10 million vacations instead of to a MUCH smaller table of 50,000 distinct vacation date ranges. Then you proposed a third solution that explicitly created and then joined to a date range table instead of to the vacation table. This produced phenomenally less data, and therefore vastly increased performance and reduced memory requirements. So even from ONLY that perspective, it is no wonder that we're seeing such a big difference.&lt;/P&gt;&lt;P&gt;Still, we haven't nailed down which of these plausible factors is really causing the trouble - intervalmatch, synthetic keys, or joining to the "wrong" table. Fortunately, it's easy to check. "My solution" did away with the intervalmatch and the synthetic key just like yours, but used a STRUCTURE of the data that we could duplicate with an intervalmatch and a synthetic key. Like so:&lt;/P&gt;&lt;P style="padding-left:30px;"&gt;Period:&lt;BR /&gt;LOAD DISTINCT&lt;BR /&gt; StartDate&lt;BR /&gt;,EndDate&lt;BR /&gt;RESIDENT Vacation&lt;BR /&gt;;&lt;BR /&gt;LEFT JOIN (Period)&lt;BR /&gt;INTERVALMATCH (Date)&lt;BR /&gt;LOAD&lt;BR /&gt; StartDate&lt;BR /&gt;,EndDate&lt;BR /&gt;RESIDENT Period&lt;BR /&gt;;&lt;/P&gt;&lt;P&gt;That leads us to this comparison:&lt;/P&gt;&lt;P style="padding-left:30px;"&gt;load time file KB RAM KB CalcTime&lt;BR /&gt;my solution 14:01 49,507 77,248 46,000 ms&lt;BR /&gt;new intervalmatch synthetic key 3:27 49,401 77,160 44,797 ms&lt;/P&gt;&lt;P&gt;As we can see from this, staying away from intervalmatch and synthetic keys did nothing for us. It appears that the synthetic key mimics creating our own table tying together a date range ID with the start and end dates, just like I would expect. They both use similar amounts of memory, and take similar amounts of time to process, just like I would expect. The main difference is that letting QlikView do all the work via intervalmatch and a synthetic key allows us to load the data about four times faster. So I'd just let QlikView do the work.&lt;/P&gt;&lt;P&gt;Still, the chart in your solution loads twice as fast, so it seems that your data structure is probably better for this specific chart. It's possible that your data structure is better for your own real world data and charts as well. QlikView is often happier with certain kinds of data denormalizations. But regardless, the problem you were having wasn't with the intervalmatch or the synthetic key. The problem you were having was with joining data in inefficient ways.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;TL;DR - After much testing and thought, I still think that the best general solution is a more normalized data structure with a synthetic key created by intervalmatch. The DateRangeId solution with duplicated StartDates and EndDates on the Vacation table may be better for specific charts if RAM and reload times are not issues.&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Dec 2009 06:18:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Forget-about-IntervalMatch/m-p/206613#M1207388</guid>
      <dc:creator>johnw</dc:creator>
      <dc:date>2009-12-11T06:18:27Z</dc:date>
    </item>
    <item>
      <title>Forget about IntervalMatch</title>
      <link>https://community.qlik.com/t5/QlikView/Forget-about-IntervalMatch/m-p/206614#M1207391</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It's a really good test for all of these solutions. I did it on real application, but without measurements. &lt;IMG alt="Smile" src="http://community.qlik.com/emoticons/emotion-1.gif" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="jive_text_macro jive_macro_quote" jivemacro="quote"&gt;load time file KB RAM KB CalcTime&lt;BR /&gt;intervalmatch and join out of memory on a 64-bit machine&lt;BR /&gt;intervalmatch synthetic key 5:19 200,477 387,080 116,312 ms&lt;BR /&gt;your solution fixed 15:26 29,253 106,924 22,938 ms&lt;BR /&gt;my solution 14:01 49,507 77,248 46,000 ms&lt;BR /&gt;new intervalmatch synthetic key 3:27 49,401 77,160 44,797 ms&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;Your pointing to duplications of Start/End dates in vacation table is very good. I'll think about it. I've just fabricated the problem. The real one is more complex. And definitely, the performance is a main criteria for my application. I'm going to massage my solution with some of your hints. Thank you. &lt;IMG alt="Yes" src="http://community.qlik.com/emoticons/emotion-21.gif" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Dec 2009 10:56:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Forget-about-IntervalMatch/m-p/206614#M1207391</guid>
      <dc:creator />
      <dc:date>2009-12-11T10:56:56Z</dc:date>
    </item>
    <item>
      <title>Forget about IntervalMatch</title>
      <link>https://community.qlik.com/t5/QlikView/Forget-about-IntervalMatch/m-p/206615#M1207394</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I just followed your interesting discussion about how to avoid intervalmatch, what kills my memory almost every day and I believe it's a problem of more than 10.000 records, but let me explain:&lt;/P&gt;&lt;P&gt;To keep close to your example, even it does not match from the content: I'd like to find out how often at the same minute my employees have been on vacation (to say it quiet frankly, ID 1 from 01/1/2009 07:00 till 15/01/2009 7:30 and ID 2 from 15/01/2009 7:00 to 20/01/2009 7:00) will generate 30 minutes were 2 employees have been on vacation in the same hour. For the hour from 07:00 to 08:00 the maximum would be 2, for the next hour 08:00 - 09:00 =1.&lt;/P&gt;&lt;P&gt;What I'd like to generate is a list which stats for every hour in the period we look at the max number of employees on vacation based upon the minutes. Hope you get this?! I know that this sounds a bit weird.&lt;/P&gt;&lt;P&gt;To do so I have created a "Minutecalender", that allows me to generate every minute in the period I look at.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;Timefield :&lt;BR /&gt;LOAD ('$(varMinTime)' + ((rowno()-1)/1440)) AS timefield&lt;BR /&gt;AUTOGENERATE (1)&lt;BR /&gt;WHILE ('$(varMinTime)' + ((rowno()-1)/1440))&amp;lt;=$(varMaxTime);&lt;BR /&gt;&lt;BR /&gt;Minutes:&lt;BR /&gt;LOAD&lt;BR /&gt; timefield AS timefield,&lt;BR /&gt; timestamp (timefield , 'DD.MM.YYYY hh:mm') AS MinCal,&lt;BR /&gt; dual(time(floor(timefield, 1/24),'hh:mm') &amp;amp; ' - ' &amp;amp; time(ceil (timefield, 1/24),'hh:mm'), floor(frac(timefield),1/24)) as HourkalenderDate&lt;BR /&gt;RESIDENT timefield ;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;What I usually do next is to do an intervalmatch on the Start and the End so that I generate for the same record the number of rows as it has minutes. And in a next step I count the ID per minute:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;Data1:LOAD&lt;BR /&gt; ID As IDmin,&lt;BR /&gt; Year,&lt;BR /&gt; Month,&lt;BR /&gt; Weekday,&lt;BR /&gt; Start,&lt;BR /&gt; End,&lt;BR /&gt; Date&lt;BR /&gt;RESIDENT Main.Data&lt;BR /&gt;WHERE "Year" &amp;gt;= 2009;&lt;BR /&gt;&lt;BR /&gt;LEFT JOIN&lt;BR /&gt;INTERVALMATCH (MinCal)&lt;BR /&gt;LOAD&lt;BR /&gt; Start,&lt;BR /&gt; End&lt;BR /&gt;RESIDENT Data1;&lt;BR /&gt;&lt;BR /&gt;Data2:&lt;BR /&gt;LOAD&lt;BR /&gt; IDmin,&lt;BR /&gt; Start,&lt;BR /&gt; End,&lt;BR /&gt; Weekday,&lt;BR /&gt; Month,&lt;BR /&gt; Year,&lt;BR /&gt; Date,&lt;BR /&gt; MinCal&lt;BR /&gt;RESIDENT Data1;&lt;BR /&gt;&lt;BR /&gt;LEFT JOIN (Data2)&lt;BR /&gt;LOAD&lt;BR /&gt; MinCal,&lt;BR /&gt; Count (Distinct IDmin) AS Result&lt;BR /&gt;RESIDENT Data2&lt;BR /&gt;GROUP BY MinCal;&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;This generates a lots of records (one for each minute), but the information I need is the maximum per hour ('HourKalenderDate'). So I just need to get the maximum value (24 values for every day). This code just works with less then 10.000 records, what is in my data the year 2009. If I want to do this for 2008 (12.000 records) or even 2008 + 2009 (20.000+ records) together there will be the "out of memory message" during the intervalmatch calculation of the minutes.&lt;/P&gt;&lt;P&gt;The question is: is there maybe a solution to solve my problem without the intervalmatch function?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best&lt;/P&gt;&lt;P&gt;Nico (who is still a newbie with QV)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Dec 2009 16:14:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Forget-about-IntervalMatch/m-p/206615#M1207394</guid>
      <dc:creator />
      <dc:date>2009-12-11T16:14:59Z</dc:date>
    </item>
    <item>
      <title>Forget about IntervalMatch</title>
      <link>https://community.qlik.com/t5/QlikView/Forget-about-IntervalMatch/m-p/206616#M1207397</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="jive_text_macro jive_macro_quote" jivemacro="quote"&gt;&lt;BR /&gt;orka wrote:Your pointing to duplications of Start/End dates in vacation table is very good. I'll think about it. I've just fabricated the problem. The real one is more complex. And definitely, the performance is a main criteria for my application. I'm going to massage my solution with some of your hints. Thank you.&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;Honestly, I doubt that the duplicated start/end dates in the vacation table are a problem. For my sample data, I'm &lt;EM&gt;guessing&lt;/EM&gt; that that's why that solution took more RAM than the two that didn't do that, but I can't say for sure without looking at the .mem file, and that's probably unnecessary. And in any case, if duplicate data makes your charts go faster, it's probably a good thing instead of a bad thing. I denormalize a lot of data in QlikView to make reporting easier, even to make my data structure more clear. Normally, QlikView's compression does a pretty good job of handling it, and there's little concern for duplicated data being out of sync since there are no updates.&lt;/P&gt;&lt;P&gt;And yes, real world problems are usually more complex than these example problems we solve. You arrived at your solution through actual testing on your actual data. Perhaps what I consider "the best general solution" would help, but it could easily make things worse instead. My suggestion is more of a "this is what I'd start with, and then modify from there while testing performance" rather than "this is what everyone should do in all cases". Hopefully I didn't come across too strong, and I apologize if I did.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 12 Dec 2009 00:45:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Forget-about-IntervalMatch/m-p/206616#M1207397</guid>
      <dc:creator>johnw</dc:creator>
      <dc:date>2009-12-12T00:45:37Z</dc:date>
    </item>
    <item>
      <title>Forget about IntervalMatch</title>
      <link>https://community.qlik.com/t5/QlikView/Forget-about-IntervalMatch/m-p/206617#M1207400</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="jive_text_macro jive_macro_quote" jivemacro="quote"&gt;&lt;BR /&gt;Droz112 wrote: The question is: is there maybe a solution to solve my problem without the intervalmatch function?&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;Well, I can't give this the attention it deserves at the moment, but yeah, I agree that intervalmatch is a bad solution. As you observed, this generates a lot of records.&lt;/P&gt;&lt;P&gt;We could consider your problem to be similar to an even bigger problem. Say that instead of minutes, you had timestamps. You wanted to be able to select one particular point in time, down to ten thousands of a second, and know how many employees were on vacation at that time. That is basically impossible to solve with intervalmatch, so it needs a different solution.&lt;/P&gt;&lt;P&gt;I know I've thought about this question before, but I can't remember if I've come up with any solution or not. I'll have to take a look through all of my sample files. If I don't have anything, I'll spend some more time thinking about it. Perhaps someone else will have solved it for you by then.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 12 Dec 2009 00:48:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Forget-about-IntervalMatch/m-p/206617#M1207400</guid>
      <dc:creator>johnw</dc:creator>
      <dc:date>2009-12-12T00:48:39Z</dc:date>
    </item>
    <item>
      <title>Forget about IntervalMatch</title>
      <link>https://community.qlik.com/t5/QlikView/Forget-about-IntervalMatch/m-p/206618#M1207401</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;/P&gt;Normal 0 21 false false false DE X-NONE X-NONE MicrosoftInternetExplorer4 &lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="margin-bottom:0.0001pt;line-height:normal;"&gt;Normal 0 21 false false false DE X-NONE X-NONE MicrosoftInternetExplorer4&lt;/P&gt;&lt;P&gt;Thanks for your valuable comment, John. If you don't mind I would appreciate if could check your sample files?&lt;/P&gt;&lt;P&gt;At the moment I am trying to solve this question by using a different way. Even the results are not appropriate at the moment, because of the raw data - it's the WAY I'd like to discuss. I am still using the IntervalMatch function but do not create a row for every minute of every record. In the example below I just use IntervalMatch to check if the Start time (Start2, what is similar to Start1) is in-between the Start time (Start1) and End time (End1) of any other record. Doing so I just create less rows then before and QV can handle the whole data without generating separate data sets (e.g. for the year 2008 and 2009, as noted above). I am not sure if the count function in the table Data5 is used appropriate. The result of count (End1) should represent the number of records what have been a start time (Start2) in-between the Start1 and End1. Since Start1 and Start2 possibly have a similar timestamp I use End1 for counting.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="margin-bottom:0.0001pt;line-height:normal;"&gt;&lt;/P&gt;&lt;P style="font-style: italic; line-height: normal; margin-bottom: 0.0001pt"&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;I&gt;&lt;/I&gt;&lt;PRE style="margin: 0px;"&gt;&lt;I&gt;Data1:&lt;/I&gt;&lt;B&gt;LOAD&lt;/B&gt; ID &lt;B&gt;As&lt;/B&gt; IDmin,Year,Month,Weekday,Start,End,&lt;BR style="margin-bottom:0.0001pt;line-height:normal;" /&gt;Hour(Start) &lt;B&gt;as&lt;/B&gt; StartHour, Date&lt;BR style="margin-bottom:0.0001pt;line-height:normal;" /&gt;&lt;B&gt;RESIDENT&lt;/B&gt; Main.Data;&lt;BR style="margin-bottom:0.0001pt;line-height:normal;" /&gt;&lt;BR style="margin-bottom:0.0001pt;line-height:normal;" /&gt;&lt;I&gt;Data2:&lt;/I&gt;&lt;BR style="margin-bottom:0.0001pt;line-height:normal;" /&gt;&lt;B&gt;Load&lt;/B&gt;&lt;BR style="margin-bottom:0.0001pt;line-height:normal;" /&gt;Start &lt;B&gt;as&lt;/B&gt; Start1,&lt;BR style="margin-bottom:0.0001pt;line-height:normal;" /&gt;End &lt;B&gt;as&lt;/B&gt; End1,&lt;BR style="margin-bottom:0.0001pt;line-height:normal;" /&gt;IDmin&lt;B&gt;&lt;/B&gt;&lt;BR style="margin-bottom:0.0001pt;line-height:normal;" /&gt;&lt;B&gt;Resident&lt;/B&gt; Data1;&lt;BR style="margin-bottom:0.0001pt;line-height:normal;" /&gt;&lt;BR style="margin-bottom:0.0001pt;line-height:normal;" /&gt;Data3&lt;B&gt;:&lt;/B&gt;&lt;B&gt;&lt;/B&gt;&lt;BR style="margin-bottom:0.0001pt;line-height:normal;" /&gt;&lt;B&gt;Load&lt;/B&gt;&lt;BR style="margin-bottom:0.0001pt;line-height:normal;" /&gt;Start &lt;B&gt;as&lt;/B&gt; Start2,&lt;BR style="margin-bottom:0.0001pt;line-height:normal;" /&gt;Date &lt;B&gt;as&lt;/B&gt; Date2,&lt;BR style="margin-bottom:0.0001pt;line-height:normal;" /&gt;Month &lt;B&gt;as&lt;/B&gt; Month2,&lt;BR style="margin-bottom:0.0001pt;line-height:normal;" /&gt;Weekday &lt;B&gt;as&lt;/B&gt; Weekday2,&lt;BR style="margin-bottom:0.0001pt;line-height:normal;" /&gt;StartHour,&lt;BR style="margin-bottom:0.0001pt;line-height:normal;" /&gt;Date,&lt;BR style="margin-bottom:0.0001pt;line-height:normal;" /&gt;IDmin&lt;B&gt;&lt;/B&gt;&lt;BR style="margin-bottom:0.0001pt;line-height:normal;" /&gt;&lt;B&gt;Resident&lt;/B&gt; Data1;&lt;BR style="margin-bottom:0.0001pt;line-height:normal;" /&gt;&lt;BR /&gt;&lt;BR style="margin-bottom:0.0001pt;line-height:normal;" /&gt;&lt;I&gt;Data4:&lt;/I&gt;&lt;B&gt;&lt;/B&gt;&lt;BR style="margin-bottom:0.0001pt;line-height:normal;" /&gt;&lt;B&gt;Intervalmatch&lt;/B&gt; (Start2) &lt;B&gt;Load&lt;/B&gt; Start1, End1 &lt;B&gt;&lt;/B&gt;&lt;B&gt;Resident&lt;/B&gt; Data2;&lt;B&gt;&lt;/B&gt;&lt;BR style="margin-bottom:0.0001pt;line-height:normal;" /&gt;&lt;BR style="margin-bottom:0.0001pt;line-height:normal;" /&gt;&lt;B&gt;Drop&lt;/B&gt; &lt;B&gt;Table&lt;/B&gt; &lt;I&gt;Data1;&lt;/I&gt;&lt;BR style="margin-bottom:0.0001pt;line-height:normal;" /&gt;&lt;BR style="margin-bottom:0.0001pt;line-height:normal;" /&gt;&lt;I&gt;Data5:&lt;/I&gt;&lt;BR style="margin-bottom:0.0001pt;line-height:normal;" /&gt;&lt;B&gt;LOAD&lt;/B&gt;&lt;BR style="margin-bottom:0.0001pt;line-height:normal;" /&gt;Start2, IDmin, Month2, StartHour, Weekday2&lt;B&gt;&lt;/B&gt;&lt;BR style="margin-bottom:0.0001pt;line-height:normal;" /&gt;&lt;B&gt;Resident&lt;/B&gt; Data3;&lt;BR style="margin-bottom:0.0001pt;line-height:normal;" /&gt;&lt;BR style="margin-bottom:0.0001pt;line-height:normal;" /&gt;&lt;B&gt;LEFT&lt;/B&gt; &lt;B&gt;JOIN&lt;/B&gt; (&lt;I&gt;Data5&lt;/I&gt;)&lt;B&gt;&lt;/B&gt;&lt;BR style="margin-bottom:0.0001pt;line-height:normal;" /&gt;&lt;B&gt;LOAD&lt;/B&gt;&lt;BR style="margin-bottom:0.0001pt;line-height:normal;" /&gt;Start2, Start1, End1&lt;B&gt;&lt;/B&gt;&lt;BR style="margin-bottom:0.0001pt;line-height:normal;" /&gt;&lt;B&gt;RESIDENT&lt;/B&gt; Data4;&lt;BR style="margin-bottom:0.0001pt;line-height:normal;" /&gt;&lt;BR style="margin-bottom:0.0001pt;line-height:normal;" /&gt;&lt;B&gt;LEFT&lt;/B&gt; &lt;B&gt;JOIN&lt;/B&gt; (&lt;I&gt;Data5&lt;/I&gt;)&lt;B&gt;&lt;/B&gt;&lt;BR style="margin-bottom:0.0001pt;line-height:normal;" /&gt;&lt;B&gt;LOAD&lt;/B&gt;&lt;BR style="margin-bottom:0.0001pt;line-height:normal;" /&gt;Start2,&lt;BR style="margin-bottom:0.0001pt;line-height:normal;" /&gt;Count(End1) &lt;B&gt;AS&lt;/B&gt; CountX&lt;B&gt;&lt;/B&gt;&lt;BR style="margin-bottom:0.0001pt;line-height:normal;" /&gt;&lt;B&gt;Resident&lt;/B&gt; Data4&lt;B&gt;&lt;/B&gt;&lt;BR style="margin-bottom:0.0001pt;line-height:normal;" /&gt;&lt;B&gt;Group&lt;/B&gt; &lt;B&gt;by&lt;/B&gt; Start2;&lt;BR style="margin-bottom:0.0001pt;line-height:normal;" /&gt;&lt;BR style="margin-bottom:0.0001pt;line-height:normal;" /&gt;&lt;B&gt;Drop&lt;/B&gt; &lt;B&gt;table&lt;/B&gt; &lt;I&gt;Data2;&lt;/I&gt;&lt;B&gt;&lt;/B&gt;&lt;BR style="margin-bottom:0.0001pt;line-height:normal;" /&gt;&lt;B&gt;Drop&lt;/B&gt; &lt;B&gt;table&lt;/B&gt; &lt;I&gt;Data3;&lt;/I&gt;&lt;B&gt;&lt;/B&gt;&lt;BR style="margin-bottom:0.0001pt;line-height:normal;" /&gt;&lt;B&gt;Drop&lt;/B&gt; &lt;B&gt;table&lt;/B&gt; &lt;I&gt;Data4;&lt;/I&gt;&lt;BR style="margin-bottom:0.0001pt;line-height:normal;" /&gt;&lt;BR style="margin-bottom:0.0001pt;line-height:normal;" /&gt;&lt;I&gt;MAXIMUM:&lt;/I&gt;&lt;B&gt;&lt;/B&gt;&lt;BR style="margin-bottom:0.0001pt;line-height:normal;" /&gt;&lt;B&gt;LOAD&lt;/B&gt;&lt;BR style="margin-bottom:0.0001pt;line-height:normal;" /&gt;StartHour,&lt;BR style="margin-bottom:0.0001pt;line-height:normal;" /&gt;Date,&lt;BR style="margin-bottom:0.0001pt;line-height:normal;" /&gt;dual(time(floor(StartHour, 1/24),'hh:mm') &amp;amp; ' - ' &amp;amp; time(ceil (StartHour, 1/24),'hh:mm'),floor(frac(StartHour),1/24)) &lt;B&gt;&lt;/B&gt;&lt;B&gt;as&lt;/B&gt; Hours&lt;B&gt;&lt;/B&gt;&lt;BR style="margin-bottom:0.0001pt;line-height:normal;" /&gt;&lt;B&gt;Resident&lt;/B&gt; Main.Data;&lt;BR style="margin-bottom:0.0001pt;line-height:normal;" /&gt;&lt;BR style="margin-bottom:0.0001pt;line-height:normal;" /&gt;&lt;B&gt;inner&lt;/B&gt; &lt;B&gt;join&lt;/B&gt;&lt;B&gt;&lt;/B&gt;&lt;BR style="margin-bottom:0.0001pt;line-height:normal;" /&gt;&lt;B&gt;LOAD&lt;/B&gt;&lt;BR style="margin-bottom:0.0001pt;line-height:normal;" /&gt;StartHour, max(CountX) &lt;B&gt;AS&lt;/B&gt; MaxPerHour&lt;BR style="margin-bottom:0.0001pt;line-height:normal;" /&gt;&lt;B&gt;RESIDENT&lt;/B&gt; Data5&lt;B&gt;&lt;/B&gt;&lt;BR style="margin-bottom:0.0001pt;line-height:normal;" /&gt;&lt;B&gt;GROUP&lt;/B&gt; &lt;B&gt;BY&lt;/B&gt; StartHour;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;/P&gt;&lt;P style="margin-bottom:0.0001pt;line-height:normal;"&gt;&lt;/P&gt;&lt;P style="margin-bottom:0.0001pt;line-height:normal;"&gt;Even this way seems to be sort of a work-around; I am not satisfied with it. Any suggestions how to make this tangled mass of tables more comfortable?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Dec 2009 22:34:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Forget-about-IntervalMatch/m-p/206618#M1207401</guid>
      <dc:creator />
      <dc:date>2009-12-14T22:34:51Z</dc:date>
    </item>
    <item>
      <title>Forget about IntervalMatch</title>
      <link>https://community.qlik.com/t5/QlikView/Forget-about-IntervalMatch/m-p/206619#M1207402</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jonh and All,&lt;/P&gt;&lt;P&gt;Can some one please help me out here. I am facing the same problem here. I struggling to overcome from this problem. Hope some can help me out here. I have also posted the sample application in the below link.&lt;/P&gt;&lt;P&gt;http://community.qlik.com/forums/t/31125.aspx&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Jul 2010 07:26:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Forget-about-IntervalMatch/m-p/206619#M1207402</guid>
      <dc:creator />
      <dc:date>2010-07-05T07:26:58Z</dc:date>
    </item>
    <item>
      <title>Forget about IntervalMatch</title>
      <link>https://community.qlik.com/t5/QlikView/Forget-about-IntervalMatch/m-p/206620#M1207403</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Is it possbile for you to share the QlikView application with us?Let me kow the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;Jai&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Jul 2010 05:55:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Forget-about-IntervalMatch/m-p/206620#M1207403</guid>
      <dc:creator />
      <dc:date>2010-07-12T05:55:44Z</dc:date>
    </item>
    <item>
      <title>Forget about IntervalMatch</title>
      <link>https://community.qlik.com/t5/QlikView/Forget-about-IntervalMatch/m-p/206621#M1207404</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jai,&lt;/P&gt;&lt;P&gt;It has been attached in the link which has been given and also have attached the same below.&lt;/P&gt;&lt;P&gt;&lt;A href="http://community.qlik.com/forums/t/31125.aspx"&gt;http://community.qlik.com/forums/t/31125.aspx&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jul 2010 06:51:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Forget-about-IntervalMatch/m-p/206621#M1207404</guid>
      <dc:creator />
      <dc:date>2010-07-16T06:51:06Z</dc:date>
    </item>
    <item>
      <title>Re: Forget about IntervalMatch</title>
      <link>https://community.qlik.com/t5/QlikView/Forget-about-IntervalMatch/m-p/206622#M1207405</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm struggling with just this sort of problem. I'm trying to create an interval match for 17000 records and it's killing my qvw! I'd appreciate any help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hannah&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Apr 2014 16:02:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Forget-about-IntervalMatch/m-p/206622#M1207405</guid>
      <dc:creator>hannah_coutts</dc:creator>
      <dc:date>2014-04-09T16:02:04Z</dc:date>
    </item>
    <item>
      <title>Re: Forget about IntervalMatch</title>
      <link>https://community.qlik.com/t5/QlikView/Forget-about-IntervalMatch/m-p/206623#M1207407</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13.63636302948px;"&gt;Hello At titude.&lt;/P&gt;&lt;P style="font-size: 13.63636302948px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.63636302948px;"&gt;It seems the link is broken. Can you provide the .qvw files if you have them please?&lt;/P&gt;&lt;P style="font-size: 13.63636302948px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.63636302948px;"&gt;Thank you...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Apr 2015 12:56:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Forget-about-IntervalMatch/m-p/206623#M1207407</guid>
      <dc:creator />
      <dc:date>2015-04-03T12:56:35Z</dc:date>
    </item>
    <item>
      <title>Re: Forget about IntervalMatch</title>
      <link>https://community.qlik.com/t5/QlikView/Forget-about-IntervalMatch/m-p/206624#M1207409</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Awesome Post !&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Dec 2017 11:54:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Forget-about-IntervalMatch/m-p/206624#M1207409</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-12-20T11:54:57Z</dc:date>
    </item>
  </channel>
</rss>

