<?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: Intervalmatch() or Date comparison? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Intervalmatch-or-Date-comparison/m-p/744113#M265654</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13.6000003814697px;"&gt;Hi Alexis,&lt;/P&gt;&lt;P style="font-size: 13.6000003814697px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.6000003814697px;"&gt;Can you give a try for the below:&lt;/P&gt;&lt;P style="font-size: 13.6000003814697px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.6000003814697px;"&gt;In your calendar load part, add those 2 fields:&lt;/P&gt;&lt;P style="font-size: 13.6000003814697px;"&gt;Floor(MonthStart(DateID)) as StartOfMonth,&lt;/P&gt;&lt;P style="font-size: 13.6000003814697px;"&gt;Floor(MonthEnd(DateID)) as EndOfMonth&lt;/P&gt;&lt;P style="font-size: 13.6000003814697px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.6000003814697px;"&gt;Then the expression would be:&lt;/P&gt;&lt;P style="font-size: 13.6000003814697px;"&gt;count(distinct if(StartDateInt &amp;lt;= EndOfMonth and EndDateInt &amp;gt;= StartOfMonth, SubscriberKey))&lt;/P&gt;&lt;P style="font-size: 13.6000003814697px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.6000003814697px;"&gt;Hope this gives you the desired results.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 13 Nov 2014 22:14:33 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-11-13T22:14:33Z</dc:date>
    <item>
      <title>Intervalmatch() or Date comparison?</title>
      <link>https://community.qlik.com/t5/QlikView/Intervalmatch-or-Date-comparison/m-p/744112#M265653</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have simplified my problem with this following example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="_test1.jpg" class="jive-image jiveImage" src="https://community.qlik.com/legacyfs/online/71211__test1.jpg" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a Calendar (as above) and a file (called Usage here) that has records that contain a StartDate an EndDate and a SubscriberKey. The 2 tables need to be disjointed (remember this is a small part of a very large application).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to see a distribution (by Month-Year) of active subscribers ( i.e. count(distint (SubscriberKey)))&amp;nbsp; - the way that I ascertain that a subscriber is active for a specific month is to see whether they have a StartDate that is either inside or before the month and an EndDate that is no less than the beginning of the month.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As an example, active subscribers for the month of "May 2014" are those that have a StartDate that is less than or equal 31/5/2014 and an EndDate that is greater or equal 1/5/2014. I have already ensured that the EndDate is greater than the StartDate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="_test2.jpg" class="jive-image jiveImage" src="https://community.qlik.com/legacyfs/online/71212__test2.jpg" /&gt; &lt;/P&gt;&lt;P&gt;I&amp;nbsp; attach the 2 QVDs that make up the data set for the above. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is not a classic intervalmatch scenario (I don't think) as I am not charting by the Start/EndDate intervals but merely using these fields to establish inclusion.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any assistance would be much appreciated.&lt;/P&gt;&lt;P&gt;Alexis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Nov 2014 18:58:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Intervalmatch-or-Date-comparison/m-p/744112#M265653</guid>
      <dc:creator>alexis</dc:creator>
      <dc:date>2014-11-13T18:58:53Z</dc:date>
    </item>
    <item>
      <title>Re: Intervalmatch() or Date comparison?</title>
      <link>https://community.qlik.com/t5/QlikView/Intervalmatch-or-Date-comparison/m-p/744113#M265654</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13.6000003814697px;"&gt;Hi Alexis,&lt;/P&gt;&lt;P style="font-size: 13.6000003814697px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.6000003814697px;"&gt;Can you give a try for the below:&lt;/P&gt;&lt;P style="font-size: 13.6000003814697px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.6000003814697px;"&gt;In your calendar load part, add those 2 fields:&lt;/P&gt;&lt;P style="font-size: 13.6000003814697px;"&gt;Floor(MonthStart(DateID)) as StartOfMonth,&lt;/P&gt;&lt;P style="font-size: 13.6000003814697px;"&gt;Floor(MonthEnd(DateID)) as EndOfMonth&lt;/P&gt;&lt;P style="font-size: 13.6000003814697px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.6000003814697px;"&gt;Then the expression would be:&lt;/P&gt;&lt;P style="font-size: 13.6000003814697px;"&gt;count(distinct if(StartDateInt &amp;lt;= EndOfMonth and EndDateInt &amp;gt;= StartOfMonth, SubscriberKey))&lt;/P&gt;&lt;P style="font-size: 13.6000003814697px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.6000003814697px;"&gt;Hope this gives you the desired results.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Nov 2014 22:14:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Intervalmatch-or-Date-comparison/m-p/744113#M265654</guid>
      <dc:creator />
      <dc:date>2014-11-13T22:14:33Z</dc:date>
    </item>
    <item>
      <title>Re: Intervalmatch() or Date comparison?</title>
      <link>https://community.qlik.com/t5/QlikView/Intervalmatch-or-Date-comparison/m-p/744114#M265655</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for that - that was very helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is in fact another criterion (the Status flag) which I have added and it seems to give the right results.&lt;/P&gt;&lt;P&gt;The formula now looks as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;= count(distinct if(StartDateInt &amp;lt;= EndOfMonth and EndDateInt &amp;gt;= StartOfMonth and Status = 3, SubscriberKey))&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Comments on this approach:&lt;/P&gt;&lt;P&gt;a) Seems to be quite slow in recalculating when selections are made&lt;/P&gt;&lt;P&gt;b) Is there a SET ANALYSIS version of this that you can think of that might work. This would be useful for using the "1" and "$" notation to ignore selections etc..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;I tried without success:the below:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;= count(distinct {$&amp;lt;[StartDateInt] = {"&amp;lt;=[EndOfMonth]"}, [EndDateInt] = {"&amp;gt;=[StartOfMonth]"}, [Status] = {3} &amp;gt;}&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;SubscriberKey)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anybody spot anything wrong!&lt;/P&gt;&lt;P&gt;Alexis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Nov 2014 00:19:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Intervalmatch-or-Date-comparison/m-p/744114#M265655</guid>
      <dc:creator>alexis</dc:creator>
      <dc:date>2014-11-14T00:19:02Z</dc:date>
    </item>
    <item>
      <title>Re: Intervalmatch() or Date comparison?</title>
      <link>https://community.qlik.com/t5/QlikView/Intervalmatch-or-Date-comparison/m-p/744115#M265656</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;"&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12.7272720336914px;"&gt;This is not a classic intervalmatch scenario (I don't think) as I am not charting by the Start/EndDate intervals but merely using these fields to establish inclusion."&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12.7272720336914px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12.7272720336914px;"&gt;In my mind, it is a classic IntervalMatch application. IntervalMatch will connect each Subscriber to Date rows in the Calendar table. Those are all the Dates the Subscriber was active. Then you can count(DISTINCT SubscriberKey) across any of the dimensions in the Calendar table. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12.7272720336914px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12.7272720336914px;"&gt;For a similar example, see&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Qlikview Cookbook: Expand a Pricing Date Table &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://qlikviewcookbook.com/recipes/download-info/expand-a-pricing-date-table/"&gt;http://qlikviewcookbook.com/recipes/download-info/expand-a-pricing-date-table/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12.7272720336914px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12.7272720336914px;"&gt;-Rob&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Nov 2014 00:33:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Intervalmatch-or-Date-comparison/m-p/744115#M265656</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2014-11-14T00:33:26Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Intervalmatch() or Date comparison?</title>
      <link>https://community.qlik.com/t5/QlikView/Intervalmatch-or-Date-comparison/m-p/744116#M265657</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rob&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for taking the time to reply.I am a big fan of many of your postings and articles.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am not sure how your example relates to the example that I posted - can you be so kind to look at my example and show me how to resolve my issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Instead of loading my calendar.qvd you can generate the calendar using the code as suggested ealrier on this thread:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Calendar:&lt;/P&gt;&lt;P&gt;Load &lt;/P&gt;&lt;P&gt;&amp;nbsp; TempDate As DateID,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Date(TempDate) As Date,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Year(TempDate) As Year,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Month(TempDate) As Month,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Day(TempDate) As Day,&lt;/P&gt;&lt;P&gt;&amp;nbsp; WeekDay(TempDate) As WeekDay,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Week(TempDate) As Week,&lt;/P&gt;&lt;P&gt;&amp;nbsp; 'Q' &amp;amp; Ceil(Month(TempDate)/3) As Quarter,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Date(MonthStart(TempDate), 'MMM-YYYY') As MonthYear,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Floor(MonthStart(TempDate)) As StartOfMonth,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Floor(MonthEnd(TempDate)) As EndOfMonth&lt;/P&gt;&lt;P&gt;&amp;nbsp; ;&lt;/P&gt;&lt;P&gt;Load &lt;/P&gt;&lt;P&gt;&amp;nbsp; RecNo() -1 + $(vStartDate) As TempDate&lt;/P&gt;&lt;P&gt;AutoGenerate ($(vNumDays));&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My chart is using the expression:&lt;/P&gt;&lt;P&gt;= count(distinct if(StartDateInt &amp;lt;= EndOfMonth and EndDateInt &amp;gt;= StartOfMonth and Status = 3, SubscriberKey))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;P&gt;Alexis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Nov 2014 01:06:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Intervalmatch-or-Date-comparison/m-p/744116#M265657</guid>
      <dc:creator>alexis</dc:creator>
      <dc:date>2014-11-14T01:06:47Z</dc:date>
    </item>
    <item>
      <title>Re: Intervalmatch() or Date comparison?</title>
      <link>https://community.qlik.com/t5/QlikView/Intervalmatch-or-Date-comparison/m-p/744117#M265658</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi again,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Based on your suggestion it made me realise that the expression can be further simplified in order to enable you to report by ANY of the calendar dimensions not just Month-Year:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;= count(distinct if(StartDateInt &amp;lt;= DateID and EndDateInt &amp;gt;= DateID and Status = 3, SubscriberKey))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The only problem is that it is very slow to calculate every time a selection is made or the level of granularity is changed (say from Month to week) - I have a feeling SET ANALYSIS will help. Can someone help redefine the above removing the "If" statement?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again&lt;/P&gt;&lt;P&gt;Alexis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Nov 2014 07:05:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Intervalmatch-or-Date-comparison/m-p/744117#M265658</guid>
      <dc:creator>alexis</dc:creator>
      <dc:date>2014-11-14T07:05:07Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Re: Intervalmatch() or Date comparison?</title>
      <link>https://community.qlik.com/t5/QlikView/Intervalmatch-or-Date-comparison/m-p/744118#M265659</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In your data I would:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Matches:&lt;/P&gt;&lt;P&gt;IntervalMatch (Date)&lt;/P&gt;&lt;P&gt;LOAD StartDate, EndDate RESIDENT TestUsage;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then you can create a chart with dimension=MonthYear and Expression= count(DISTINCT SubscriberKey).&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="line-height: 1.5em; font-size: 10pt;"&gt;With your sample data, you get a 48M row Matches table. This gives you a lot of &lt;/SPAN&gt;flexibility&lt;SPAN style="line-height: 1.5em; font-size: 10pt;"&gt;, but depending on the size of your final data you may want to roll up that data into some monthly figures and drop the detail. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="line-height: 1.5em; font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="line-height: 1.5em; font-size: 10pt;"&gt;Example attached.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Nov 2014 18:18:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Intervalmatch-or-Date-comparison/m-p/744118#M265659</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2014-11-14T18:18:31Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Re: Intervalmatch() or Date comparison?</title>
      <link>https://community.qlik.com/t5/QlikView/Intervalmatch-or-Date-comparison/m-p/744119#M265660</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Rob&lt;/P&gt;&lt;P&gt;This works perfectly although the presence of the synthetic keys is a little messy and off-putting.&lt;/P&gt;&lt;P&gt;Is there any way of removing the synthetic keys?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again for helping out &lt;/P&gt;&lt;P&gt;Alexis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 15 Nov 2014 01:03:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Intervalmatch-or-Date-comparison/m-p/744119#M265660</guid>
      <dc:creator>alexis</dc:creator>
      <dc:date>2014-11-15T01:03:46Z</dc:date>
    </item>
    <item>
      <title>Re: Intervalmatch() or Date comparison?</title>
      <link>https://community.qlik.com/t5/QlikView/Intervalmatch-or-Date-comparison/m-p/744120#M265661</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-users/4003"&gt;Henric Cronström&lt;/A&gt; says this in his blog post &lt;A _jive_internal="true" class="font-color-normal" href="https://community.qlik.com/blogs/qlikviewdesignblog/2013/04/04/intervalmatch" style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #3d3d3d;"&gt;IntervalMatch&lt;/A&gt; about the synthetic key that is created by the intervalmatch:&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P&gt;Further, the data model contains a composite key (the FromDate and ToDate fields) which will manifest itself as a QlikView synthetic key. But have no fear. This synthetic key should be there; not only is it correct, but it is also optimal given the data model. You do not need to remove it.&lt;/P&gt;

&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 15 Nov 2014 11:52:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Intervalmatch-or-Date-comparison/m-p/744120#M265661</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2014-11-15T11:52:06Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Re: Intervalmatch() or Date comparison?</title>
      <link>https://community.qlik.com/t5/QlikView/Intervalmatch-or-Date-comparison/m-p/744121#M265662</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the heads-up Gysbert - in an already "busy" data structure the fewer table the better so I was hoping to be able to remove the synthetic tables...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR&lt;/P&gt;&lt;P&gt;Alexis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 15 Nov 2014 15:02:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Intervalmatch-or-Date-comparison/m-p/744121#M265662</guid>
      <dc:creator>alexis</dc:creator>
      <dc:date>2014-11-15T15:02:29Z</dc:date>
    </item>
  </channel>
</rss>

