<?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: Top 10 Values in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Top-10-Values/m-p/647170#M1079721</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Strange. Can you only use Rank function with expression and see what kind of rank you are getting? If possible share some sample qvw for fastest resolution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Rank(If(date(INC_SUBMIT_DATE) &amp;gt; date($(vSliderDate)),count (DISTINCT INCIDENT_NUMBER)))&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 10 Jul 2014 02:55:01 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2014-07-10T02:55:01Z</dc:date>
    <item>
      <title>Top 10 Values</title>
      <link>https://community.qlik.com/t5/QlikView/Top-10-Values/m-p/647162#M1079713</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I need to display the top ten values in a pivot chart based on the highest count.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The expression used is:=IF(date(INC_SUBMIT_DATE) &amp;gt; date($(vSliderDate)),count (DISTINCT INCIDENT_NUMBER))&lt;/P&gt;&lt;P&gt;where vSliderDate is the value that is given as an input from the user.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jul 2014 23:18:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Top-10-Values/m-p/647162#M1079713</guid>
      <dc:creator />
      <dc:date>2014-07-09T23:18:31Z</dc:date>
    </item>
    <item>
      <title>Re: Top 10 Values</title>
      <link>https://community.qlik.com/t5/QlikView/Top-10-Values/m-p/647163#M1079714</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can you try using the Dimension Limits tab?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Jul 2014 00:02:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Top-10-Values/m-p/647163#M1079714</guid>
      <dc:creator />
      <dc:date>2014-07-10T00:02:42Z</dc:date>
    </item>
    <item>
      <title>Re: Top 10 Values</title>
      <link>https://community.qlik.com/t5/QlikView/Top-10-Values/m-p/647164#M1079715</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Pivot table doesnot have this tab&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Jul 2014 00:04:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Top-10-Values/m-p/647164#M1079715</guid>
      <dc:creator />
      <dc:date>2014-07-10T00:04:46Z</dc:date>
    </item>
    <item>
      <title>Re: Top 10 Values</title>
      <link>https://community.qlik.com/t5/QlikView/Top-10-Values/m-p/647165#M1079716</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Something like below,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In dimension,&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Aggr(If(Rank(If(date(INC_SUBMIT_DATE) &amp;gt; date($(vSliderDate)),count (DISTINCT INCIDENT_NUMBER)))&amp;lt;=10, DIMENSION), &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;DIMENSION&lt;/SPAN&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Expression should be same as your above script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PS: There might be a typo error in above script. You can follow below generic logic.&lt;/P&gt;&lt;P&gt;=Aggr(If(Rank(Sum(Expression))&amp;lt;=10,Dimension),Dimension)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Jul 2014 02:01:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Top-10-Values/m-p/647165#M1079716</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-07-10T02:01:01Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Top 10 Values</title>
      <link>https://community.qlik.com/t5/QlikView/Top-10-Values/m-p/647166#M1079717</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anitha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please find attached file for solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Jul 2014 02:04:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Top-10-Values/m-p/647166#M1079717</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2014-07-10T02:04:12Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Top 10 Values</title>
      <link>https://community.qlik.com/t5/QlikView/Top-10-Values/m-p/647167#M1079718</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did not find the attachment &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/sad.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Jul 2014 02:13:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Top-10-Values/m-p/647167#M1079718</guid>
      <dc:creator />
      <dc:date>2014-07-10T02:13:02Z</dc:date>
    </item>
    <item>
      <title>Re: Top 10 Values</title>
      <link>https://community.qlik.com/t5/QlikView/Top-10-Values/m-p/647168#M1079719</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is displaying the lowest 10 values not the top... I think its taking the least expression value as the first rank. I need to get the highest count to be the first rank&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Jul 2014 02:14:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Top-10-Values/m-p/647168#M1079719</guid>
      <dc:creator />
      <dc:date>2014-07-10T02:14:28Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Re: Top 10 Values</title>
      <link>https://community.qlik.com/t5/QlikView/Top-10-Values/m-p/647169#M1079720</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anitha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please find attached file for solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try like thi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dimension: =if(aggr(rank(SUM(Sales),4,0), DimensionName)&amp;lt;=3,DimensionName)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Expression: =Sum(MeasureName)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Jul 2014 02:36:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Top-10-Values/m-p/647169#M1079720</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2014-07-10T02:36:00Z</dc:date>
    </item>
    <item>
      <title>Re: Top 10 Values</title>
      <link>https://community.qlik.com/t5/QlikView/Top-10-Values/m-p/647170#M1079721</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Strange. Can you only use Rank function with expression and see what kind of rank you are getting? If possible share some sample qvw for fastest resolution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Rank(If(date(INC_SUBMIT_DATE) &amp;gt; date($(vSliderDate)),count (DISTINCT INCIDENT_NUMBER)))&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Jul 2014 02:55:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Top-10-Values/m-p/647170#M1079721</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-07-10T02:55:01Z</dc:date>
    </item>
  </channel>
</rss>

