<?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 for Each Year Quarter in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Top-10-Values-for-Each-Year-Quarter/m-p/1244865#M394888</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check this,&lt;/P&gt;&lt;P&gt;May be using,Your Dimension and hiding others.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Top 10 YearQtr Sort2.PNG" class="jive-image image-1" src="/legacyfs/online/146406_Top 10 YearQtr Sort2.PNG" style="height: 390px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;HTH,&lt;/P&gt;&lt;P&gt;PFA,&lt;/P&gt;&lt;P&gt;Hirish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 12 Dec 2016 18:16:23 GMT</pubDate>
    <dc:creator>HirisH_V7</dc:creator>
    <dc:date>2016-12-12T18:16:23Z</dc:date>
    <item>
      <title>Top 10 Values for Each Year Quarter</title>
      <link>https://community.qlik.com/t5/QlikView/Top-10-Values-for-Each-Year-Quarter/m-p/1244860#M394883</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I would want to see the the top 10 Values for Each YearQuarter in the Same Chart.&lt;/P&gt;&lt;P&gt;I did try doing it on a straight table by sorting the values based on the expression and displaying the 10 values.&lt;/P&gt;&lt;P&gt;But this combines the values of both the YearQtr Data(i.e., 2015Q4 and 2016Q1) and shows me a consolidated list of 10 rows.&lt;/P&gt;&lt;P&gt;But then I need to get the Top 10 Values for each of the YearQtr i.e., 20 rows meaning 10 rows for each &lt;SPAN style="font-size: 13.3333px;"&gt;YearQtr .&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Can anyone please let me know how it could be done.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Attached is a sample file for reference &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Dec 2016 08:23:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Top-10-Values-for-Each-Year-Quarter/m-p/1244860#M394883</guid>
      <dc:creator>anushree1</dc:creator>
      <dc:date>2016-12-12T08:23:01Z</dc:date>
    </item>
    <item>
      <title>Re: Top 10 Values for Each Year Quarter</title>
      <link>https://community.qlik.com/t5/QlikView/Top-10-Values-for-Each-Year-Quarter/m-p/1244861#M394884</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;IMG class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/146343_pastedImage_0.png" style="max-height: 900px; max-width: 1200px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Dec 2016 09:26:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Top-10-Values-for-Each-Year-Quarter/m-p/1244861#M394884</guid>
      <dc:creator>zhadrakas</dc:creator>
      <dc:date>2016-12-12T09:26:22Z</dc:date>
    </item>
    <item>
      <title>Re: Top 10 Values for Each Year Quarter</title>
      <link>https://community.qlik.com/t5/QlikView/Top-10-Values-for-Each-Year-Quarter/m-p/1244862#M394885</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Check this, In pivot table by grouping and&amp;nbsp; in straight table by using aggr,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Using your data,&lt;/P&gt;&lt;PRE __default_attr="sql" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14815346883161955 jive_text_macro" jivemacro_uid="_14815346883161955"&gt;
&lt;P&gt;Data:&lt;/P&gt;
&lt;P&gt;LOAD YearQtr,&lt;/P&gt;
&lt;P&gt;Left(YearQtr,4) AS Year,&lt;/P&gt;
&lt;P&gt;Right(YearQtr,2) as Quarter,&lt;/P&gt;
&lt;P&gt;ID,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Value&lt;/P&gt;
&lt;P&gt;FROM&lt;/P&gt;
&lt;P&gt;[Top 10 YearQtr Sort.xlsx]&lt;/P&gt;
&lt;P&gt;(ooxml, embedded labels, table is Sheet1);&lt;/P&gt;

&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At front end for ,Straight table,&lt;/P&gt;&lt;PRE __default_attr="sql" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14815347224731833 jive_text_macro" jivemacro_uid="_14815347224731833"&gt;
&lt;P&gt;=IF(Rank(sum(Value))&amp;lt;=3,sum(Value))&lt;/P&gt;

&lt;/PRE&gt;&lt;P&gt;as expression,shows following,Below:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;At front end for ,Pivot table,&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE __default_attr="sql" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14815347684932122 jive_text_macro" jivemacro_uid="_14815347684932122"&gt;
&lt;P style="font-size: 13.3333px;"&gt;=Aggr(IF(Rank(sum(Value))&amp;lt;=3,sum(Value)),Year,Quarter,ID)&lt;/P&gt;

&lt;/PRE&gt;&lt;P style="font-size: 13.3333px;"&gt;as expression,shows following,Below:&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;IMG __jive_id="146348" alt="Top 10 YearQtr Sort.PNG" class="jive-image image-1" src="/legacyfs/online/146348_Top 10 YearQtr Sort.PNG" style="max-width: 620px; height: auto;" /&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;is this what your'e looking for, or let me know your'e requirement further.&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;HTH,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;PFA,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Hirish&lt;/P&gt;&lt;PRE __default_attr="sql" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14815347481219186" jivemacro_uid="_14815347481219186"&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Dec 2016 09:28:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Top-10-Values-for-Each-Year-Quarter/m-p/1244862#M394885</guid>
      <dc:creator>HirisH_V7</dc:creator>
      <dc:date>2016-12-12T09:28:42Z</dc:date>
    </item>
    <item>
      <title>Re: Top 10 Values for Each Year Quarter</title>
      <link>https://community.qlik.com/t5/QlikView/Top-10-Values-for-Each-Year-Quarter/m-p/1244863#M394886</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ya but I do not want to show a split I would rather want to show the data as 2015q4 and 2016q1 rathher than splitting it into two columns as Year and Quarter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Dec 2016 12:50:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Top-10-Values-for-Each-Year-Quarter/m-p/1244863#M394886</guid>
      <dc:creator>anushree1</dc:creator>
      <dc:date>2016-12-12T12:50:31Z</dc:date>
    </item>
    <item>
      <title>Re: Top 10 Values for Each Year Quarter</title>
      <link>https://community.qlik.com/t5/QlikView/Top-10-Values-for-Each-Year-Quarter/m-p/1244864#M394887</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Then just use YearQtr instead of Year and Qtr in table dimensions and Aggr? As far as I can see splitting YearQtr into 2 fields is not essential for this solution.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Dec 2016 13:56:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Top-10-Values-for-Each-Year-Quarter/m-p/1244864#M394887</guid>
      <dc:creator>kuba_michalik</dc:creator>
      <dc:date>2016-12-12T13:56:07Z</dc:date>
    </item>
    <item>
      <title>Re: Top 10 Values for Each Year Quarter</title>
      <link>https://community.qlik.com/t5/QlikView/Top-10-Values-for-Each-Year-Quarter/m-p/1244865#M394888</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check this,&lt;/P&gt;&lt;P&gt;May be using,Your Dimension and hiding others.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Top 10 YearQtr Sort2.PNG" class="jive-image image-1" src="/legacyfs/online/146406_Top 10 YearQtr Sort2.PNG" style="height: 390px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;HTH,&lt;/P&gt;&lt;P&gt;PFA,&lt;/P&gt;&lt;P&gt;Hirish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Dec 2016 18:16:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Top-10-Values-for-Each-Year-Quarter/m-p/1244865#M394888</guid>
      <dc:creator>HirisH_V7</dc:creator>
      <dc:date>2016-12-12T18:16:23Z</dc:date>
    </item>
  </channel>
</rss>

