<?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: Load Max Date Record for Account with multipel records in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Load-Max-Date-Record-for-Account-with-multipel-records/m-p/1648630#M593207</link>
    <description>&lt;P&gt;&lt;SPAN&gt;Jeremy, did Arthur's last post get you what you needed to get things working as you wanted?&amp;nbsp; If so, do not forget to return to the thread and use the Accept as Solution button on that post to give Arthur credit for the help and to let other Community Members know it actually worked too.&amp;nbsp; If you are still working on things, please leave an update for us.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Regards,&lt;BR /&gt;Brett&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 19 Nov 2019 15:34:47 GMT</pubDate>
    <dc:creator>Brett_Bleess</dc:creator>
    <dc:date>2019-11-19T15:34:47Z</dc:date>
    <item>
      <title>Load Max Date Record for Account with multipel records</title>
      <link>https://community.qlik.com/t5/QlikView/Load-Max-Date-Record-for-Account-with-multipel-records/m-p/1647119#M593203</link>
      <description>&lt;P&gt;I have found multiple articles, but no solution that I can get to work. I have an account that has multiple records depending on the Date_Filed. I only want the most recent record and the fields that pertain to it. I can achieve this by grouping just the Account # and selecting the Max(Date_Filed). As soon as add in the other fields for the record I am looking for, I cannot get it to work. Can anyone help me out?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 341px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/23672i134FA75EE1E27315/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 01:56:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-Max-Date-Record-for-Account-with-multipel-records/m-p/1647119#M593203</guid>
      <dc:creator>MalcolmCICWF</dc:creator>
      <dc:date>2024-11-16T01:56:37Z</dc:date>
    </item>
    <item>
      <title>Re: Load Max Date Record for Account with multipel records</title>
      <link>https://community.qlik.com/t5/QlikView/Load-Max-Date-Record-for-Account-with-multipel-records/m-p/1647243#M593204</link>
      <description>&lt;P&gt;Try this:&lt;/P&gt;&lt;P&gt;Raw:&amp;nbsp;&lt;BR /&gt;load Date_Filed,Date_Granted,Group,ACCTID inline [&lt;BR /&gt;Date_Filed,Date_Granted,Group,ACCTID&lt;BR /&gt;20170501,20181121,A,11111&lt;BR /&gt;20170601,20181210,B,11111&lt;BR /&gt;20170701,20190221,A,11111&lt;BR /&gt;20170801,20190401,C,11111&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;Data:&lt;BR /&gt;LOAD ACCTID, max(Date_Filed) as Date_Filed&lt;BR /&gt;resident Raw&lt;BR /&gt;GROUP BY ACCTID;&lt;/P&gt;&lt;P&gt;left join(Data)&lt;BR /&gt;load * resident Raw;drop table Raw;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Replace Raw with your Excel table.&lt;/P&gt;&lt;P&gt;Thanks and regards,&lt;/P&gt;&lt;P&gt;Arthur Fong&lt;/P&gt;</description>
      <pubDate>Fri, 15 Nov 2019 00:03:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-Max-Date-Record-for-Account-with-multipel-records/m-p/1647243#M593204</guid>
      <dc:creator>Arthur_Fong</dc:creator>
      <dc:date>2019-11-15T00:03:44Z</dc:date>
    </item>
    <item>
      <title>Re: Load Max Date Record for Account with multipel records</title>
      <link>https://community.qlik.com/t5/QlikView/Load-Max-Date-Record-for-Account-with-multipel-records/m-p/1647643#M593205</link>
      <description>&lt;P&gt;I's actually from a QVD, that's just an example of what the data looks like. I actually have two dates, a created date and a modified date.&amp;nbsp; Is there a way to grab max created date and then the max modified date concurrently?&lt;/P&gt;</description>
      <pubDate>Fri, 15 Nov 2019 20:53:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-Max-Date-Record-for-Account-with-multipel-records/m-p/1647643#M593205</guid>
      <dc:creator>MalcolmCICWF</dc:creator>
      <dc:date>2019-11-15T20:53:59Z</dc:date>
    </item>
    <item>
      <title>Re: Load Max Date Record for Account with multipel records</title>
      <link>https://community.qlik.com/t5/QlikView/Load-Max-Date-Record-for-Account-with-multipel-records/m-p/1647815#M593206</link>
      <description>&lt;P&gt;Try this:&lt;/P&gt;&lt;P&gt;Data:&lt;/P&gt;&lt;P&gt;Load ACCTID, max(Date_Filed) as Date_Filed, max(Modified_Date) as Modified_Date&lt;/P&gt;&lt;P&gt;resident Raw;&lt;/P&gt;&lt;P&gt;Group by ACCTID;&lt;/P&gt;&lt;P&gt;left join(Data)&lt;/P&gt;&lt;P&gt;load * resident Raw;&lt;/P&gt;&lt;P&gt;drop table Raw;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Nov 2019 07:58:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-Max-Date-Record-for-Account-with-multipel-records/m-p/1647815#M593206</guid>
      <dc:creator>Arthur_Fong</dc:creator>
      <dc:date>2019-11-18T07:58:09Z</dc:date>
    </item>
    <item>
      <title>Re: Load Max Date Record for Account with multipel records</title>
      <link>https://community.qlik.com/t5/QlikView/Load-Max-Date-Record-for-Account-with-multipel-records/m-p/1648630#M593207</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Jeremy, did Arthur's last post get you what you needed to get things working as you wanted?&amp;nbsp; If so, do not forget to return to the thread and use the Accept as Solution button on that post to give Arthur credit for the help and to let other Community Members know it actually worked too.&amp;nbsp; If you are still working on things, please leave an update for us.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Regards,&lt;BR /&gt;Brett&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Nov 2019 15:34:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-Max-Date-Record-for-Account-with-multipel-records/m-p/1648630#M593207</guid>
      <dc:creator>Brett_Bleess</dc:creator>
      <dc:date>2019-11-19T15:34:47Z</dc:date>
    </item>
  </channel>
</rss>

