<?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: Identifying repeat customers in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Identifying-repeat-customers/m-p/1115354#M902264</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Ruben - How would I get the days difference? I would like to be able to use a slider to adjust the representation-range value? I've not used the PEEK function before, but from your example I'm assuming there is an easy way to get the number of days since the previous presentation irrespective of the number of days?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 08 Jul 2016 10:41:43 GMT</pubDate>
    <dc:creator />
    <dc:date>2016-07-08T10:41:43Z</dc:date>
    <item>
      <title>Identifying repeat customers</title>
      <link>https://community.qlik.com/t5/QlikView/Identifying-repeat-customers/m-p/1115351#M902261</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Relatively new Qlikview user here with a question (naturally!).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Say I have a table of clients and their date of arrival at a clinic. Each client has a unique ID. How do I isolate those clients that come to a clinic within, say, 14 days of their last arrival date?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="1" class="jiveBorder" style="border: 1px solid rgb(0, 0, 0); width: 100%;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;Client_ID&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;Arrival_Date&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;112189&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt; 1 Jan 2014 &lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;113712&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;3 Jan 2014&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;104621&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;7 Jan 2014&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;120121&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;11 Jan 2014&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;112189&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;11 Jan 2014 &amp;lt;-- I want to be able to identify this client and this event&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;119634&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;12 Jan 2014&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;112189&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;&lt;P&gt;12 Jan 2014 &amp;lt;-- I want to be able to identify this client and this event, but only for a single event (the 11th Jan visit)&lt;/P&gt;&lt;P&gt;even though they are still within 14 days of the 1 Jan visit&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So client ID 112189 has come back within 14 days. How can I:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - Identify both the original visit, and the first occurrence of any visit within the 14 days&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; - Get a count of all clients within a timeframe that revisit in 14 days? (In the example provided, I would want a count of 2 because it should only count against the visit immediately prior&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any assistance or advice gratefully accepted.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Lee&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/Identifying-repeat-customers/m-p/1115351#M902261</guid>
      <dc:creator />
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Identifying repeat customers</title>
      <link>https://community.qlik.com/t5/QlikView/Identifying-repeat-customers/m-p/1115352#M902262</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Lee, when loading the data you can set a flag doing a sorted load:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data:&lt;/P&gt;&lt;P&gt;NoConcatenate &lt;/P&gt;&lt;P&gt;LOAD Client_ID, &lt;/P&gt;&lt;P&gt;&amp;nbsp; Arrival_Date, &lt;/P&gt;&lt;P&gt;&amp;nbsp; If(Peek(Client_ID)=Client_ID and Arrival_Date-Peek(Arrival_Date)&amp;lt;=14, 1, 0) as revisit&lt;/P&gt;&lt;P&gt;Resident Source_Data Order by Client_ID, Arrival_Date;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A Sum(revisit) returns '2' with your sample data&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note that this will count a gap less than 14 days to the previous visit, if there is a visit for Client 112189 on 20-Jan it will count as a revisit of the 12-Jan visit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to avoid this you can create another field wich carries the day difference from the first visit.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Jul 2016 08:11:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Identifying-repeat-customers/m-p/1115352#M902262</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2016-07-08T08:11:10Z</dc:date>
    </item>
    <item>
      <title>Re: Identifying repeat customers</title>
      <link>https://community.qlik.com/t5/QlikView/Identifying-repeat-customers/m-p/1115353#M902263</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Second alternative attached sample. So 112189 is visited 3 times&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vikas&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/130635_pastedImage_0.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Jul 2016 09:29:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Identifying-repeat-customers/m-p/1115353#M902263</guid>
      <dc:creator>vikasmahajan</dc:creator>
      <dc:date>2016-07-08T09:29:06Z</dc:date>
    </item>
    <item>
      <title>Re: Identifying repeat customers</title>
      <link>https://community.qlik.com/t5/QlikView/Identifying-repeat-customers/m-p/1115354#M902264</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Ruben - How would I get the days difference? I would like to be able to use a slider to adjust the representation-range value? I've not used the PEEK function before, but from your example I'm assuming there is an easy way to get the number of days since the previous presentation irrespective of the number of days?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Jul 2016 10:41:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Identifying-repeat-customers/m-p/1115354#M902264</guid>
      <dc:creator />
      <dc:date>2016-07-08T10:41:43Z</dc:date>
    </item>
    <item>
      <title>Re: Identifying repeat customers</title>
      <link>https://community.qlik.com/t5/QlikView/Identifying-repeat-customers/m-p/1115355#M902265</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Cheers Vikas, I'll have a look when I have access to a Qlik-PC.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Jul 2016 10:42:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Identifying-repeat-customers/m-p/1115355#M902265</guid>
      <dc:creator />
      <dc:date>2016-07-08T10:42:55Z</dc:date>
    </item>
    <item>
      <title>Re: Identifying repeat customers</title>
      <link>https://community.qlik.com/t5/QlikView/Identifying-repeat-customers/m-p/1115356#M902266</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Lee, Peek() is a way to acces the previous loaded file in the table (because of that, the "Order by" settings are important).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can store the values that meet the criteria:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;If(Peek(Client_ID)=Client_ID and Arrival_Date-Peek(Arrival_Date)&amp;lt;=14, &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: 13px;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt; Arrival_Date-Peek(Arrival_Date)&lt;/SPAN&gt;) as DaysFromLastVisit,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;If(Peek(Client_ID)=Client_ID and Arrival_Date-Peek(Arrival_Date)&amp;lt;=14,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt; Arrival_Date-Peek(Arrival_Date)+Alt(Peek(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;DaysFromFirstVisit&lt;/SPAN&gt;&lt;/SPAN&gt;), 0) as DaysFromFirstVisit,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Note that this is a script solution, if you change '14' to a value stored in a variable (using a slider--&amp;gt;in front-end), you'll need to do a reload to apply the new value to the data load.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Jul 2016 11:14:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Identifying-repeat-customers/m-p/1115356#M902266</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2016-07-08T11:14:09Z</dc:date>
    </item>
    <item>
      <title>Re: Identifying repeat customers</title>
      <link>https://community.qlik.com/t5/QlikView/Identifying-repeat-customers/m-p/1115357#M902267</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks again - that isn't going to work for me, unfortunately. I could do the number of days since the last arrival as a part of the data load (join the table against itself by client_id), but I was hoping that Qlikview would support a way doing this using set analysis. I was hoping that there was something along the lines of:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;COUNT({$&amp;lt;CLIENT_ID=P({CLIENT_ID={'[This-Client_id]'}, ARRIVAL_DATE={'&amp;gt;=[This-CLIENT_ID's-Arrival-Date-minus-$(vDaysBetween)-days]}&amp;gt;}CLIENT_ID)&amp;gt;CLIENT_ID)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Jul 2016 12:05:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Identifying-repeat-customers/m-p/1115357#M902267</guid>
      <dc:creator />
      <dc:date>2016-07-08T12:05:47Z</dc:date>
    </item>
    <item>
      <title>Re: Identifying repeat customers</title>
      <link>https://community.qlik.com/t5/QlikView/Identifying-repeat-customers/m-p/1115358#M902268</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vikas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is alright for counting all presentations, but it doesn't seem to factor for the within 14 days component, or just for representations.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again though.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 10 Jul 2016 22:15:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Identifying-repeat-customers/m-p/1115358#M902268</guid>
      <dc:creator />
      <dc:date>2016-07-10T22:15:32Z</dc:date>
    </item>
    <item>
      <title>Re: Identifying repeat customers</title>
      <link>https://community.qlik.com/t5/QlikView/Identifying-repeat-customers/m-p/1115359#M902269</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Lee, set analisys is applied to the whole table, not row by row, so you can't use the Client_ID or the Arrival_Date of each row in set analysis.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think you'll need some auxiliar field or flag previously calculated in script to use in front-end. If you create a Field that stores 1 when the visit is a revisit you will only need to do a sum of this field to count the revisits.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jul 2016 07:30:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Identifying-repeat-customers/m-p/1115359#M902269</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2016-07-11T07:30:31Z</dc:date>
    </item>
    <item>
      <title>Re: Identifying repeat customers</title>
      <link>https://community.qlik.com/t5/QlikView/Identifying-repeat-customers/m-p/1115360#M902270</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Ruben - looks like the only way at the moment would be to add a flag to say that it is re-presentation, and a field to calculate the number of days since the previous presentation. Seems a bit kludgy &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;It would be great in the future if Qlik added functionality to allow past-analysis against {&amp;lt;Value={'this.Value'}&amp;gt;}. Implementation of functionality that specifically referenced an object through a &lt;STRONG&gt;this &lt;/STRONG&gt;keyword.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Lee&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jul 2016 21:44:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Identifying-repeat-customers/m-p/1115360#M902270</guid>
      <dc:creator />
      <dc:date>2016-07-11T21:44:29Z</dc:date>
    </item>
    <item>
      <title>Re: Identifying repeat customers</title>
      <link>https://community.qlik.com/t5/QlikView/Identifying-repeat-customers/m-p/1115361#M902271</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be something like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;count({$&amp;lt;Client_ID=P({1&amp;lt;Num={"&amp;gt;0&amp;lt;14"}&amp;gt;}Client_ID)&amp;gt;} Client_ID )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where Num is calculated in the script which is the difference between the Dates visited&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Client:&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt;Client_ID ,Arrival_Date&lt;BR /&gt;112189, 01/01/2014&amp;nbsp; &lt;BR /&gt;113712, 01/03/2014 &lt;BR /&gt;104621, 01/07/2014 &lt;BR /&gt;120121, 01/11/2014 &lt;BR /&gt;112189, 01/11/2014 &lt;BR /&gt;119634, 01/12/2014 &lt;BR /&gt;112189, 01/12/2014&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;load &lt;BR /&gt;Client_ID,Arrival_Date,&lt;/P&gt;&lt;P&gt;if( Peek(Client_ID)=Client_ID , (Arrival_Date-Peek(Arrival_Date))+ Peek(Num) ,0) as Num&lt;/P&gt;&lt;P&gt;Resident Client&lt;BR /&gt;Order by 1,2;&lt;/P&gt;&lt;P&gt;DROP Table Client ;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jul 2016 01:25:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Identifying-repeat-customers/m-p/1115361#M902271</guid>
      <dc:creator>qliksus</dc:creator>
      <dc:date>2016-07-12T01:25:55Z</dc:date>
    </item>
    <item>
      <title>Re: Identifying repeat customers</title>
      <link>https://community.qlik.com/t5/QlikView/Identifying-repeat-customers/m-p/1115362#M902272</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Qliksus - Yes, this is pretty much how I am going to have to handle it. I was just wondering if/hoping that the functionality lived within set analysis as that would potentially provide a lot more functionality and versatility.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jul 2016 04:27:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Identifying-repeat-customers/m-p/1115362#M902272</guid>
      <dc:creator />
      <dc:date>2016-07-12T04:27:26Z</dc:date>
    </item>
    <item>
      <title>Re: Identifying repeat customers</title>
      <link>https://community.qlik.com/t5/QlikView/Identifying-repeat-customers/m-p/1115363#M902273</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Lee, I want only remark that this is the only way at the moment &lt;SPAN style="text-decoration: underline;"&gt;I know&lt;/SPAN&gt;, but I'm always open to learn new techniques I still unknown &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;... maybe there is a workaround to do this in front-end, but I see it easier using auxiliary fields; this fields can be to set a flag, the ID of the most recent visit or from the visits in the last 14 days, days from last visit, etc.. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jul 2016 15:59:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Identifying-repeat-customers/m-p/1115363#M902273</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2016-07-12T15:59:32Z</dc:date>
    </item>
    <item>
      <title>Re: Identifying repeat customers</title>
      <link>https://community.qlik.com/t5/QlikView/Identifying-repeat-customers/m-p/1115364#M902274</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Guys!&lt;/P&gt;&lt;P&gt;This helped me very much.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 16 Jul 2016 18:33:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Identifying-repeat-customers/m-p/1115364#M902274</guid>
      <dc:creator />
      <dc:date>2016-07-16T18:33:41Z</dc:date>
    </item>
  </channel>
</rss>

