<?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: Highest count in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Highest-count/m-p/1066816#M1254202</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi both thank you for the quick reply highly appreciate it. I am still working on it as there are some changes in the requirement. I will soon check and let u know if i am successful&lt;/P&gt;&lt;P&gt;Thanks a lot&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 20 Feb 2016 18:47:30 GMT</pubDate>
    <dc:creator />
    <dc:date>2016-02-20T18:47:30Z</dc:date>
    <item>
      <title>Highest count</title>
      <link>https://community.qlik.com/t5/QlikView/Highest-count/m-p/1066813#M1254193</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guys need some help please.&lt;/P&gt;&lt;P&gt;I have list of SuperKey's that have more than one Route-ID. Basically I only need to see the line with highest count which in this case is line 1. How can I achieve this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" style="width: 487px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD height="20" width="291"&gt;SuperKey&lt;/TD&gt;&lt;TD width="83"&gt;ROUTE_ID&lt;/TD&gt;&lt;TD width="113"&gt; RouteID Count&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="20"&gt;USAA2000045621OS030C2610&lt;/TD&gt;&lt;TD&gt;WHG03&lt;/TD&gt;&lt;TD align="right"&gt;528&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="20"&gt;USAA2000045621OS030C2610&lt;/TD&gt;&lt;TD&gt;WHG02&lt;/TD&gt;&lt;TD align="right"&gt;192&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Jan 2026 18:19:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Highest-count/m-p/1066813#M1254193</guid>
      <dc:creator />
      <dc:date>2026-01-26T18:19:17Z</dc:date>
    </item>
    <item>
      <title>Re: Highest count</title>
      <link>https://community.qlik.com/t5/QlikView/Highest-count/m-p/1066814#M1254195</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try these two expressions:&lt;/P&gt;&lt;P&gt;=Max([RouteID Count])&lt;/P&gt;&lt;P&gt;=FirstSortedValue(ROUTE_ID, -&lt;SPAN style="font-size: 13.3333px;"&gt;[RouteID Count]&lt;/SPAN&gt;)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Feb 2016 18:21:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Highest-count/m-p/1066814#M1254195</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2016-02-18T18:21:50Z</dc:date>
    </item>
    <item>
      <title>Re: Highest count</title>
      <link>https://community.qlik.com/t5/QlikView/Highest-count/m-p/1066815#M1254198</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be do something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Table:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD SuperKey,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ROUTE_ID&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [RouteID COUNT]&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FROM Source;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Right Join(Table)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD SuperKey,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Max(&lt;SPAN style="font-size: 13.3333px;"&gt;[RouteID COUNT]) as &lt;SPAN style="font-size: 13.3333px;"&gt;[RouteID COUNT]&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style=": ; font-size: 13.3333px;"&gt;Resident Table&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;Group By SuperKey;&lt;/STRONG&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Feb 2016 18:22:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Highest-count/m-p/1066815#M1254198</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-02-18T18:22:05Z</dc:date>
    </item>
    <item>
      <title>Re: Highest count</title>
      <link>https://community.qlik.com/t5/QlikView/Highest-count/m-p/1066816#M1254202</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi both thank you for the quick reply highly appreciate it. I am still working on it as there are some changes in the requirement. I will soon check and let u know if i am successful&lt;/P&gt;&lt;P&gt;Thanks a lot&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 20 Feb 2016 18:47:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Highest-count/m-p/1066816#M1254202</guid>
      <dc:creator />
      <dc:date>2016-02-20T18:47:30Z</dc:date>
    </item>
    <item>
      <title>Re: Highest count</title>
      <link>https://community.qlik.com/t5/QlikView/Highest-count/m-p/1066817#M1254206</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks guys both solutions are great and first one fits my current requirement.&lt;/P&gt;&lt;P&gt;Sunny T solution may not be used for now but will definitely be useful in future.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Feb 2016 21:31:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Highest-count/m-p/1066817#M1254206</guid>
      <dc:creator />
      <dc:date>2016-02-25T21:31:54Z</dc:date>
    </item>
    <item>
      <title>Re: Highest count</title>
      <link>https://community.qlik.com/t5/QlikView/Highest-count/m-p/1066818#M1254210</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Glad we were able to help &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Feb 2016 00:51:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Highest-count/m-p/1066818#M1254210</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-02-26T00:51:46Z</dc:date>
    </item>
  </channel>
</rss>

