<?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: How to pull max Date line? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-pull-max-Date-line/m-p/882154#M307727</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in my script there was a different order by &lt;/P&gt;&lt;P&gt;depending on your req you have to modify the order by &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="font-weight: inherit; font-size: 13px; font-family: inherit; color: #000000;"&gt;order by User, [End Date] &lt;STRONG&gt;desc&lt;/STRONG&gt;;&amp;nbsp;&amp;nbsp; &lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 20 May 2015 07:35:47 GMT</pubDate>
    <dc:creator>maxgro</dc:creator>
    <dc:date>2015-05-20T07:35:47Z</dc:date>
    <item>
      <title>How to pull max Date line?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-pull-max-Date-line/m-p/882146#M307719</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;For each user I want to fetch the line with max end date only. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;&lt;IMG alt="qlik-snap.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/86829_qlik-snap.PNG" style="font-size: 13.3333330154419px;" /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;For example, The table I want to create should have :&lt;/SPAN&gt;A, 2nd, Start Date 4/1/2012, End Date 3/30/2012. How do I get that result.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;I have the following script:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;Temp1:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;Load User,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Cell Phone Plan,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Start Date,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; End Date&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;From excel;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;Left Join(Temp1)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-size: 13.3333330154419px;"&gt;Temp2:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;Load&amp;nbsp; User,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; max(Date(End Date) as Max_End_Date&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;Resident Temp1&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;Group By User;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;This will add the max date on Temp1 but Now my challenge is how do I load only those lines in Table Temp1 that has a max end date? I tried creating a new table temp3 and did a resident load where End Date = Max_End_Date and then Drop Temp1. but It does not work. I know I can join the 3rd table to another 4th and drop Temp1table but I do not want to do that. How do I achieve this in one table without having to Join on 3rd or fourth table?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Thanks much&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 May 2015 19:08:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-pull-max-Date-line/m-p/882146#M307719</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-05-18T19:08:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to pull max Date line?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-pull-max-Date-line/m-p/882147#M307720</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can do this by using inner join instead of the left join:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;&lt;STRONG&gt;Inner &lt;/STRONG&gt;Join(Temp1)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;Load&amp;nbsp; User,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; date(max("End Date")) as &lt;STRONG&gt;"End_Date"&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;Resident Temp1&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;Group By User;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;I use date() function here because max() converts date to integer, but you want to keep the date format for the join.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 May 2015 20:00:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-pull-max-Date-line/m-p/882147#M307720</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-05-18T20:00:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to pull max Date line?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-pull-max-Date-line/m-p/882148#M307721</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Michael,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for replying. Much appreciated.&lt;/P&gt;&lt;P&gt;I followed your tips by doing an inner join but I am still getting multiple lines a sin the pic below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="max_end_date2.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/86846_max_end_date2.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;I need 1 line per user with corresponding fields and the max_end_Date&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 May 2015 20:32:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-pull-max-Date-line/m-p/882148#M307721</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-05-18T20:32:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to pull max Date line?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-pull-max-Date-line/m-p/882149#M307722</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;John,&lt;/P&gt;&lt;P&gt;I guess from the screenshot that you used field name &lt;STRONG&gt;max_end_date&lt;/STRONG&gt;, while in my example it is "&lt;STRONG&gt;End Date&lt;/STRONG&gt;".&amp;nbsp; For inner join to work as intended in this case, field name &lt;STRONG&gt;must be the same&lt;/STRONG&gt; in Temp1 and in the 'inner join", so all the records where the field doesn't match will be removed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 May 2015 20:52:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-pull-max-Date-line/m-p/882149#M307722</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-05-18T20:52:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to pull max Date line?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-pull-max-Date-line/m-p/882150#M307723</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;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #000000;"&gt;&lt;EM&gt;Temp1:&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM style="color: #000000; font-family: inherit; font-weight: inherit;"&gt;Load User,&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM style="color: #000000; font-family: inherit; font-weight: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Cell Phone Plan,&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM style="color: #000000; font-family: inherit; font-weight: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Start Date,&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM style="color: #000000; font-family: inherit; font-weight: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; End Date&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM style="color: #000000; font-family: inherit; font-weight: inherit;"&gt;From excel;&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM style="color: #000000; font-family: inherit; font-weight: inherit;"&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM style="color: #000000; font-family: inherit; font-weight: inherit;"&gt;Final:&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM style="color: #000000; font-family: inherit; font-weight: inherit;"&gt;noconcatenate load *&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM style="color: #000000; font-family: inherit; font-weight: inherit;"&gt;resident Temp1&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM style="color: #000000; font-family: inherit; font-weight: inherit;"&gt;where peek(User) &amp;lt;&amp;gt; User&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // only first user when user of current record &amp;lt;&amp;gt; ser of previous record&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM style="color: #000000; font-family: inherit; font-weight: inherit;"&gt;order by User, [End Date] desc;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // max end date by user&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM style="color: #000000; font-family: inherit; font-weight: inherit;"&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM style="color: #000000; font-family: inherit; font-weight: inherit;"&gt;drop table temp1;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #000000;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 May 2015 21:55:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-pull-max-Date-line/m-p/882150#M307723</guid>
      <dc:creator>maxgro</dc:creator>
      <dc:date>2015-05-18T21:55:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to pull max Date line?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-pull-max-Date-line/m-p/882151#M307724</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Michael, Thanks for your solution. It works and you were right. I was not using the same field name for Inner Join to work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Massimo, I will try your soln. and update it here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 May 2015 04:54:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-pull-max-Date-line/m-p/882151#M307724</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-05-19T04:54:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to pull max Date line?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-pull-max-Date-line/m-p/882152#M307725</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Massimo, I used your code and I am getting the below result: Its pulling the 1st line from the row:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="massimo_soln.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/86954_massimo_soln.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;here is the code I used:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Temp1:&lt;/P&gt;&lt;P&gt;LOAD User, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Cell Phone Plan], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Start Date], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [End Date]&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;excel;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Final:&lt;/P&gt;&lt;P&gt;noconcatenate &lt;/P&gt;&lt;P&gt;Load *&lt;/P&gt;&lt;P&gt;resident Temp1&lt;/P&gt;&lt;P&gt;where peek(User) &amp;lt;&amp;gt; User&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;order by User, [End Date];&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;drop table Temp1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let me know if I did sth incorrect. Its very possible &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;Thanks Massimo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 May 2015 01:59:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-pull-max-Date-line/m-p/882152#M307725</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-05-20T01:59:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to pull max Date line?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-pull-max-Date-line/m-p/882153#M307726</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi John,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you need to display the maximum end date records or last call made by user?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 May 2015 04:42:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-pull-max-Date-line/m-p/882153#M307726</guid>
      <dc:creator>MayilVahanan</dc:creator>
      <dc:date>2015-05-20T04:42:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to pull max Date line?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-pull-max-Date-line/m-p/882154#M307727</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in my script there was a different order by &lt;/P&gt;&lt;P&gt;depending on your req you have to modify the order by &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM style="font-weight: inherit; font-size: 13px; font-family: inherit; color: #000000;"&gt;order by User, [End Date] &lt;STRONG&gt;desc&lt;/STRONG&gt;;&amp;nbsp;&amp;nbsp; &lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 May 2015 07:35:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-pull-max-Date-line/m-p/882154#M307727</guid>
      <dc:creator>maxgro</dc:creator>
      <dc:date>2015-05-20T07:35:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to pull max Date line?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-pull-max-Date-line/m-p/882155#M307728</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Massimo, desc is a Qlik function or did you mean to say the rest of the description i.e. remaining fields.. cell phone plan and start date?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 May 2015 16:19:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-pull-max-Date-line/m-p/882155#M307728</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-05-20T16:19:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to pull max Date line?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-pull-max-Date-line/m-p/882156#M307729</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;desc? QlikView for sort in descending order&lt;/P&gt;&lt;P&gt;like desc in SQL&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 May 2015 16:23:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-pull-max-Date-line/m-p/882156#M307729</guid>
      <dc:creator>maxgro</dc:creator>
      <dc:date>2015-05-20T16:23:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to pull max Date line?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-pull-max-Date-line/m-p/882157#M307730</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Massimo,&lt;/P&gt;&lt;P&gt;you are correct &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt; your soln works perfectly well too. I have posted the script below. Thanks a lot.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Temp1:&lt;/P&gt;&lt;P&gt;LOAD User, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Cell Phone Plan], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Start Date], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [End Date]&lt;/P&gt;&lt;P&gt;FROM&amp;nbsp; Excel;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Final:&lt;/P&gt;&lt;P&gt;noconcatenate &lt;/P&gt;&lt;P&gt;Load *&lt;/P&gt;&lt;P&gt;resident Temp1&lt;/P&gt;&lt;P&gt;where peek(User) &amp;lt;&amp;gt; User&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;order by User, [End Date] desc;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;drop table Temp1;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 May 2015 16:48:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-pull-max-Date-line/m-p/882157#M307730</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-05-20T16:48:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to pull max Date line?</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-pull-max-Date-line/m-p/882158#M307731</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For Users looking for correct soln, this is also the right answer to the question.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 May 2015 16:49:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-pull-max-Date-line/m-p/882158#M307731</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-05-20T16:49:42Z</dc:date>
    </item>
  </channel>
</rss>

