<?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: Get last date for each record in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Get-last-date-for-each-record/m-p/1582290#M42568</link>
    <description>&lt;P&gt;Thanks for that but what if I wanted to just have the max date for that part only with the qty ?&lt;/P&gt;&lt;P&gt;How would I do that ?&lt;/P&gt;</description>
    <pubDate>Mon, 20 May 2019 14:59:05 GMT</pubDate>
    <dc:creator>Eaun</dc:creator>
    <dc:date>2019-05-20T14:59:05Z</dc:date>
    <item>
      <title>Get last date for each record</title>
      <link>https://community.qlik.com/t5/App-Development/Get-last-date-for-each-record/m-p/1582222#M42558</link>
      <description>&lt;P&gt;I want to get get the last date for each part number received into seperate field in the load scripTt what is the best way to go about this ?&lt;/P&gt;</description>
      <pubDate>Mon, 20 May 2019 13:26:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Get-last-date-for-each-record/m-p/1582222#M42558</guid>
      <dc:creator>Eaun</dc:creator>
      <dc:date>2019-05-20T13:26:34Z</dc:date>
    </item>
    <item>
      <title>Re: Get last date for each record</title>
      <link>https://community.qlik.com/t5/App-Development/Get-last-date-for-each-record/m-p/1582238#M42562</link>
      <description>Load *&lt;BR /&gt;From&lt;BR /&gt;EXCEL.xlsx (...);&lt;BR /&gt;&lt;BR /&gt;Left join&lt;BR /&gt;Load&lt;BR /&gt;part,&lt;BR /&gt;Max(date) as maxdate&lt;BR /&gt;From EXCEL.xlsx (...)&lt;BR /&gt;Group by part;</description>
      <pubDate>Mon, 20 May 2019 13:46:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Get-last-date-for-each-record/m-p/1582238#M42562</guid>
      <dc:creator>Vegar</dc:creator>
      <dc:date>2019-05-20T13:46:42Z</dc:date>
    </item>
    <item>
      <title>Re: Get last date for each record</title>
      <link>https://community.qlik.com/t5/App-Development/Get-last-date-for-each-record/m-p/1582290#M42568</link>
      <description>&lt;P&gt;Thanks for that but what if I wanted to just have the max date for that part only with the qty ?&lt;/P&gt;&lt;P&gt;How would I do that ?&lt;/P&gt;</description>
      <pubDate>Mon, 20 May 2019 14:59:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Get-last-date-for-each-record/m-p/1582290#M42568</guid>
      <dc:creator>Eaun</dc:creator>
      <dc:date>2019-05-20T14:59:05Z</dc:date>
    </item>
    <item>
      <title>Re: Get last date for each record</title>
      <link>https://community.qlik.com/t5/App-Development/Get-last-date-for-each-record/m-p/1582411#M42581</link>
      <description>&lt;P&gt;You could do as in script below. First pick out the max date per part and then join in the qty for that date.&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Data:
Load
   part,
   Max(date) as date
From 
   EXCEL.xlsx (...)
Group by 
   part
;

LEFT JOIN (Data)
LOAD 
   part, 
   date, 
   qty
FROM Excel.xlsx (...);&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 May 2019 19:21:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Get-last-date-for-each-record/m-p/1582411#M42581</guid>
      <dc:creator>Vegar</dc:creator>
      <dc:date>2019-05-20T19:21:38Z</dc:date>
    </item>
  </channel>
</rss>

