<?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: display the line with min (Sales) in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/display-the-line-with-min-Sales/m-p/1653520#M48828</link>
    <description>&lt;P&gt;Something like this?&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Sum({&amp;lt;flagmin={1}&amp;gt;} Sales)&lt;/STRONG&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 03 Dec 2019 10:14:42 GMT</pubDate>
    <dc:creator>Anil_Babu_Samineni</dc:creator>
    <dc:date>2019-12-03T10:14:42Z</dc:date>
    <item>
      <title>display the line with min (Sales)</title>
      <link>https://community.qlik.com/t5/App-Development/display-the-line-with-min-Sales/m-p/1653514#M48826</link>
      <description>&lt;P&gt;Hello I have this code and I want to display in a table object only the row with the minimum sales via a flag&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Table1:&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;Load * Inline [&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;Risque_id,Nom,Sales&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;1,Ahmed,100&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;2,Taxi,200&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;3,Hendo,300];&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;right join&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Table2:&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;Load * Inline [&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;Risque_id,Country,agee,Language,date_birthday,agee_min&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;1,USA,77,English,03/04/2000,77&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;3,France ,99,French,05/07/2017,99&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;];&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;left Join (Table3)&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;Load &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;Distinct&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;Risque_id,&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;Min(Sales),&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;1 as flagmin&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;resident Table1&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;Group by Risque_id;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;Thanks for help&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Dec 2019 10:03:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/display-the-line-with-min-Sales/m-p/1653514#M48826</guid>
      <dc:creator>zied_ahmed1</dc:creator>
      <dc:date>2019-12-03T10:03:34Z</dc:date>
    </item>
    <item>
      <title>Re: display the line with min (Sales)</title>
      <link>https://community.qlik.com/t5/App-Development/display-the-line-with-min-Sales/m-p/1653520#M48828</link>
      <description>&lt;P&gt;Something like this?&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Sum({&amp;lt;flagmin={1}&amp;gt;} Sales)&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Dec 2019 10:14:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/display-the-line-with-min-Sales/m-p/1653520#M48828</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2019-12-03T10:14:42Z</dc:date>
    </item>
    <item>
      <title>Re: display the line with min (Sales)</title>
      <link>https://community.qlik.com/t5/App-Development/display-the-line-with-min-Sales/m-p/1653524#M48830</link>
      <description>&lt;P&gt;Hello with this code for the flag will display only 1&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Dec 2019 10:16:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/display-the-line-with-min-Sales/m-p/1653524#M48830</guid>
      <dc:creator>zied_ahmed1</dc:creator>
      <dc:date>2019-12-03T10:16:15Z</dc:date>
    </item>
    <item>
      <title>Re: display the line with min (Sales)</title>
      <link>https://community.qlik.com/t5/App-Development/display-the-line-with-min-Sales/m-p/1657565#M49209</link>
      <description>&lt;P&gt;this is simply the solution&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;left Join (Table_final)&lt;BR /&gt;Load&lt;BR /&gt;Distinct&lt;/P&gt;&lt;P&gt;min (Sales) as Sales,&lt;/P&gt;&lt;P&gt;1 as flagmin&lt;/P&gt;&lt;P&gt;resident Table_final;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Dec 2019 12:58:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/display-the-line-with-min-Sales/m-p/1657565#M49209</guid>
      <dc:creator>zied_ahmed1</dc:creator>
      <dc:date>2019-12-13T12:58:26Z</dc:date>
    </item>
  </channel>
</rss>

