<?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: [resolved] Extract row with the maximum value in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/resolved-Extract-row-with-the-maximum-value/m-p/2296089#M68790</link>
    <description>Where is the solution?&lt;BR /&gt;Got the same problem.</description>
    <pubDate>Fri, 22 May 2015 13:24:40 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2015-05-22T13:24:40Z</dc:date>
    <item>
      <title>[resolved] Extract row with the maximum value</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Extract-row-with-the-maximum-value/m-p/2296085#M68786</link>
      <description>hello; 
&lt;BR /&gt;I have a file with 3 colums:
&lt;BR /&gt;|category|name|upd_date(yyyymmdd)
&lt;BR /&gt;|=--------+-----+-------=
&lt;BR /&gt;|1 |foo |20091201
&lt;BR /&gt;|1 |bar |20100101
&lt;BR /&gt;|2 |hoge |20091215
&lt;BR /&gt;category =&amp;gt; Group by 
&lt;BR /&gt;upd_date =&amp;gt; max(condition)
&lt;BR /&gt;name =&amp;gt; extract
&lt;BR /&gt;I want to extract the name that has it with the newest upd_date (maximum value) each category(Group by ). 
&lt;BR /&gt;I want to get this result:
&lt;BR /&gt;|category|name|upd_date
&lt;BR /&gt;|=--------+-----+-------=
&lt;BR /&gt;|1 |bar |20100101
&lt;BR /&gt;|2 |hoge |20091215
&lt;BR /&gt;
&lt;BR /&gt;Can you help me
&lt;BR /&gt;Thank you.</description>
      <pubDate>Sat, 16 Nov 2024 13:37:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Extract-row-with-the-maximum-value/m-p/2296085#M68786</guid>
      <dc:creator>izumisawaa</dc:creator>
      <dc:date>2024-11-16T13:37:53Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Extract row with the maximum value</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Extract-row-with-the-maximum-value/m-p/2296086#M68787</link>
      <description>Hello guy 
&lt;BR /&gt;Here I show you an example, 
&lt;BR /&gt;in.csv: 
&lt;BR /&gt; 
&lt;B&gt;&lt;BR /&gt;1;foo;20091201&lt;BR /&gt;1;bar;20100101&lt;BR /&gt;2;hoge;20091215&lt;BR /&gt;2;shong;20091214&lt;BR /&gt;&lt;/B&gt; 
&lt;BR /&gt;result: 
&lt;BR /&gt; 
&lt;PRE&gt;Starting job forum9360 at 11:28 25/12/2009.&lt;BR /&gt; connecting to socket on port 4283&lt;BR /&gt; connected&lt;BR /&gt;.--+----+--------.&lt;BR /&gt;|   tLogRow_1    |&lt;BR /&gt;|=-+----+-------=|&lt;BR /&gt;|id|name|upd_date|&lt;BR /&gt;|=-+----+-------=|&lt;BR /&gt;|1 |bar |20100101|&lt;BR /&gt;|2 |hoge|20091215|&lt;BR /&gt;'--+----+--------'&lt;BR /&gt; disconnected&lt;BR /&gt;Job forum9360 ended at 11:28 25/12/2009. &lt;/PRE&gt; 
&lt;BR /&gt;Best regards 
&lt;BR /&gt; 
&lt;BR /&gt; shong</description>
      <pubDate>Fri, 25 Dec 2009 03:34:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Extract-row-with-the-maximum-value/m-p/2296086#M68787</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-12-25T03:34:26Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Extract row with the maximum value</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Extract-row-with-the-maximum-value/m-p/2296087#M68788</link>
      <description>hi Shong 
&lt;BR /&gt;Thank you ;Problem resolved 
&lt;BR /&gt;&lt;span class="lia-unicode-emoji" title=":grinning_face_with_big_eyes:"&gt;😃&lt;/span&gt; 
&lt;BR /&gt;at tFileInputDelimited_2... 
&lt;BR /&gt;Should I sort (order by upd_date, id) it before the link of tMap(Lookup)?</description>
      <pubDate>Fri, 25 Dec 2009 08:15:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Extract-row-with-the-maximum-value/m-p/2296087#M68788</guid>
      <dc:creator>izumisawaa</dc:creator>
      <dc:date>2009-12-25T08:15:38Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Extract row with the maximum value</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Extract-row-with-the-maximum-value/m-p/2296088#M68789</link>
      <description>Hello 
&lt;BR /&gt; 
&lt;BLOCKQUOTE&gt; 
 &lt;TABLE border="1"&gt; 
  &lt;TBODY&gt; 
   &lt;TR&gt; 
    &lt;TD&gt;Should I sort (by upd_date) it before the link of Lookup?&lt;/TD&gt; 
   &lt;/TR&gt; 
  &lt;/TBODY&gt; 
 &lt;/TABLE&gt; 
&lt;/BLOCKQUOTE&gt; 
&lt;BR /&gt;No, it don't need. 
&lt;BR /&gt;Best regards 
&lt;BR /&gt; 
&lt;BR /&gt; shong</description>
      <pubDate>Fri, 25 Dec 2009 08:17:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Extract-row-with-the-maximum-value/m-p/2296088#M68789</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-12-25T08:17:25Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Extract row with the maximum value</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Extract-row-with-the-maximum-value/m-p/2296089#M68790</link>
      <description>Where is the solution?&lt;BR /&gt;Got the same problem.</description>
      <pubDate>Fri, 22 May 2015 13:24:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Extract-row-with-the-maximum-value/m-p/2296089#M68790</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-05-22T13:24:40Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Extract row with the maximum value</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Extract-row-with-the-maximum-value/m-p/2296090#M68791</link>
      <description>Hi litttledirk&amp;nbsp; 
&lt;BR /&gt;This topic was a little old, please report a new topic for your problem with details in order to manage and follow up your question more easier. 
&lt;BR /&gt;Thanks! 
&lt;BR /&gt;Shong</description>
      <pubDate>Mon, 25 May 2015 03:47:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Extract-row-with-the-maximum-value/m-p/2296090#M68791</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-05-25T03:47:26Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Extract row with the maximum value</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Extract-row-with-the-maximum-value/m-p/2296091#M68792</link>
      <description>My problem is exactly what you describe in post #2 (example and expected result).&amp;nbsp;</description>
      <pubDate>Tue, 26 May 2015 07:12:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Extract-row-with-the-maximum-value/m-p/2296091#M68792</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-05-26T07:12:39Z</dc:date>
    </item>
  </channel>
</rss>

