<?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 group data by max of one column in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/group-data-by-max-of-one-column/m-p/2523918#M106832</link>
    <description>&lt;P&gt;I need to expression in a table which group rows by max of a column.&lt;/P&gt;&lt;P&gt;The result need to show the latest "Description" which is filled in the biggest "stage".&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Sample.jpg" style="width: 278px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/182032iAD840AF7F52C4334/image-size/large?v=v2&amp;amp;px=999" role="button" title="Sample.jpg" alt="Sample.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Thank you Q cmmunity&lt;/P&gt;</description>
    <pubDate>Fri, 11 Jul 2025 09:20:34 GMT</pubDate>
    <dc:creator>HAMID_AKBARI</dc:creator>
    <dc:date>2025-07-11T09:20:34Z</dc:date>
    <item>
      <title>group data by max of one column</title>
      <link>https://community.qlik.com/t5/App-Development/group-data-by-max-of-one-column/m-p/2523918#M106832</link>
      <description>&lt;P&gt;I need to expression in a table which group rows by max of a column.&lt;/P&gt;&lt;P&gt;The result need to show the latest "Description" which is filled in the biggest "stage".&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Sample.jpg" style="width: 278px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/182032iAD840AF7F52C4334/image-size/large?v=v2&amp;amp;px=999" role="button" title="Sample.jpg" alt="Sample.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Thank you Q cmmunity&lt;/P&gt;</description>
      <pubDate>Fri, 11 Jul 2025 09:20:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/group-data-by-max-of-one-column/m-p/2523918#M106832</guid>
      <dc:creator>HAMID_AKBARI</dc:creator>
      <dc:date>2025-07-11T09:20:34Z</dc:date>
    </item>
    <item>
      <title>Re: group data by max of one column</title>
      <link>https://community.qlik.com/t5/App-Development/group-data-by-max-of-one-column/m-p/2523920#M106833</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/136311"&gt;@HAMID_AKBARI&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;You can do a table with ID like a dimension, and measure :&amp;nbsp;FirstSortedValue(Description,-Stage)&lt;/P&gt;&lt;P&gt;&lt;A href="https://help.qlik.com/en-US/sense/May2025/Subsystems/Hub/Content/Sense_Hub/ChartFunctions/BasicAggregationFunctions/firstsortedvalue.htm" target="_self"&gt;FirstSortedValue&lt;/A&gt;&amp;nbsp;is a function that allows you to retrieve the first value of a column according to a certain sort order.&lt;/P&gt;&lt;P&gt;Have a good day !&lt;/P&gt;</description>
      <pubDate>Fri, 11 Jul 2025 09:37:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/group-data-by-max-of-one-column/m-p/2523920#M106833</guid>
      <dc:creator>Pierrick</dc:creator>
      <dc:date>2025-07-11T09:37:01Z</dc:date>
    </item>
    <item>
      <title>Re: group data by max of one column</title>
      <link>https://community.qlik.com/t5/App-Development/group-data-by-max-of-one-column/m-p/2523936#M106836</link>
      <description>&lt;P&gt;Try this&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;FirstSortedValue(Description, -Stage)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Or&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;FirstSortedValue(DISTINCT Description, -Stage)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Or&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;FirstSortedValue(Description, -&lt;/P&gt;&lt;P&gt;Stage, 1)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 11 Jul 2025 11:22:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/group-data-by-max-of-one-column/m-p/2523936#M106836</guid>
      <dc:creator>Chanty4u</dc:creator>
      <dc:date>2025-07-11T11:22:33Z</dc:date>
    </item>
    <item>
      <title>Re: group data by max of one column</title>
      <link>https://community.qlik.com/t5/App-Development/group-data-by-max-of-one-column/m-p/2524033#M106844</link>
      <description>&lt;P&gt;It dosent work,in fact the data contains one work order to many childs(stage).&lt;/P&gt;&lt;P&gt;in every stage there is User,Date,and Description ...&lt;/P&gt;&lt;P&gt;now i want to see the final status of the table which contain last User,Date and desciption,,,also ther is a Delay duration that calculate time between every data registerd.&lt;/P&gt;&lt;P&gt;thank you&lt;/P&gt;</description>
      <pubDate>Sat, 12 Jul 2025 16:31:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/group-data-by-max-of-one-column/m-p/2524033#M106844</guid>
      <dc:creator>HAMID_AKBARI</dc:creator>
      <dc:date>2025-07-12T16:31:03Z</dc:date>
    </item>
    <item>
      <title>Re: group data by max of one column</title>
      <link>https://community.qlik.com/t5/App-Development/group-data-by-max-of-one-column/m-p/2524036#M106846</link>
      <description>for example:&lt;BR /&gt;data:&lt;BR /&gt;load&lt;BR /&gt;ID,&lt;BR /&gt;FirstSortedValue( Description, -Stage ) as Description&lt;BR /&gt;group by ID&lt;BR /&gt;;&lt;BR /&gt;load * Inline [&lt;BR /&gt;ID, Stage, Description&lt;BR /&gt;1014, 1, Text1&lt;BR /&gt;1014, 2, Text2&lt;BR /&gt;..&lt;BR /&gt;Andrzej</description>
      <pubDate>Sun, 13 Jul 2025 08:48:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/group-data-by-max-of-one-column/m-p/2524036#M106846</guid>
      <dc:creator>AndrzejD</dc:creator>
      <dc:date>2025-07-13T08:48:26Z</dc:date>
    </item>
  </channel>
</rss>

