<?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 Rank as Pop Up? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Display-Rank-as-Pop-Up/m-p/1325272#M844978</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please close the thread by marking answer as correct.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 02 Apr 2017 17:11:51 GMT</pubDate>
    <dc:creator>Kushal_Chawda</dc:creator>
    <dc:date>2017-04-02T17:11:51Z</dc:date>
    <item>
      <title>Display Rank as Pop Up?</title>
      <link>https://community.qlik.com/t5/QlikView/Display-Rank-as-Pop-Up/m-p/1325268#M844974</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How can i display Top 3 values for a particular field in pop up for all the bars in that barchart.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Detail:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have created a bar chart with following dimensions and measure:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Country and Value&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now in pop up for all the countries I want to display top 3 countries with highest value i.e. if top 3 countries by value are USA, UK, Japan.... even for Brazil it should show USA, UK, Japan in order ... for all countries.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Display-Rank-as-Pop-Up/m-p/1325268#M844974</guid>
      <dc:creator />
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Display Rank as Pop Up?</title>
      <link>https://community.qlik.com/t5/QlikView/Display-Rank-as-Pop-Up/m-p/1325269#M844975</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Front end solution could be like below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create variable &lt;STRONG&gt;vPopUpFronEnd&lt;/STRONG&gt; on front end with below expression&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;=Concat(aggr(if(rank(sum(Sales),4)&amp;lt;=3,Country&amp;amp;' : '&amp;amp;sum(Sales)),Country),chr(10),aggr(rank(sum(Sales),4),Country))&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Now in Bar chart create the below expression as "Text as Pop up"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;=dual(chr(10)&amp;amp;'Top 3 Sales'&amp;amp;chr(10)&amp;amp;'$(vPopUpFronEnd)', Sum(Sales))&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Untitled1.jpg" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/158614_Untitled1.jpg" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Back end solution could be like below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;Data:&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;LOAD * Inline [&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Country,Sales&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;US,300&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;UK,250&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;JAPAN,210&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;BRAZIL,220&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;INDIA,230];&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;New:&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;LOAD Concat(Top3Country&amp;amp;' : '&amp;amp;Top3CountrySales,chr(10),Sort) as Popup&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Where Sort&amp;lt;=3;&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;LOAD Country as Top3Country,&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Sum(Sales) as Top3CountrySales,&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; autonumber(Sum(Sales)) as Sort&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Resident Data&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Group by Country&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Order by Sales desc;&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;LET vPopUpBackend = Peek('Popup',0,'New');&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Now in Bar chart create the below expression as "Text as Pop up"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;=dual(chr(10)&amp;amp;'Top 3 Sales'&amp;amp;chr(10)&amp;amp;'$(&lt;STRONG&gt;&lt;EM&gt;vPopUpBackend &lt;/EM&gt;&lt;/STRONG&gt;)', Sum(Sales))&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;IMG alt="Untitled.jpg" class="jive-image image-2" src="https://community.qlik.com/legacyfs/online/158618_Untitled.jpg" style="height: auto;" /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;See the attached app&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 02 Apr 2017 15:48:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Display-Rank-as-Pop-Up/m-p/1325269#M844975</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2017-04-02T15:48:16Z</dc:date>
    </item>
    <item>
      <title>Re: Display Rank as Pop Up?</title>
      <link>https://community.qlik.com/t5/QlikView/Display-Rank-as-Pop-Up/m-p/1325270#M844976</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kushal,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you so much this works perfectly. Can you also advise me how to format the value to get Money number Format please?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 02 Apr 2017 16:04:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Display-Rank-as-Pop-Up/m-p/1325270#M844976</guid>
      <dc:creator />
      <dc:date>2017-04-02T16:04:19Z</dc:date>
    </item>
    <item>
      <title>Re: Display Rank as Pop Up?</title>
      <link>https://community.qlik.com/t5/QlikView/Display-Rank-as-Pop-Up/m-p/1325271#M844977</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you can use Money function&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=Concat(aggr(if(rank(sum(Sales),4)&amp;lt;=3,Country&amp;amp;' : '&amp;amp;&lt;STRONG&gt;money&lt;/STRONG&gt;(sum(Sales),&lt;STRONG&gt;'$#,##0'&lt;/STRONG&gt;)),Country),chr(10),aggr(rank(sum(Sales),4),Country))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 02 Apr 2017 16:33:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Display-Rank-as-Pop-Up/m-p/1325271#M844977</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2017-04-02T16:33:00Z</dc:date>
    </item>
    <item>
      <title>Re: Display Rank as Pop Up?</title>
      <link>https://community.qlik.com/t5/QlikView/Display-Rank-as-Pop-Up/m-p/1325272#M844978</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please close the thread by marking answer as correct.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 02 Apr 2017 17:11:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Display-Rank-as-Pop-Up/m-p/1325272#M844978</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2017-04-02T17:11:51Z</dc:date>
    </item>
    <item>
      <title>Re: Display Rank as Pop Up?</title>
      <link>https://community.qlik.com/t5/QlikView/Display-Rank-as-Pop-Up/m-p/1325273#M844979</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Kushal,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please tell me what does "4" denote in the below formula?&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; font-size: 13px;"&gt;=Concat(aggr(if(rank(sum(Sales),4)&amp;lt;=3,Country&amp;amp;' : '&amp;amp;&lt;/SPAN&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;money&lt;/STRONG&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;(sum(Sales),&lt;/SPAN&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;'$#,##0'&lt;/STRONG&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;)),Country),chr(10),aggr(rank(sum(Sales),4),Country))&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Apr 2017 13:46:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Display-Rank-as-Pop-Up/m-p/1325273#M844979</guid>
      <dc:creator />
      <dc:date>2017-04-03T13:46:00Z</dc:date>
    </item>
    <item>
      <title>Re: Display Rank as Pop Up?</title>
      <link>https://community.qlik.com/t5/QlikView/Display-Rank-as-Pop-Up/m-p/1325274#M844980</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P class="syntax"&gt;&lt;A name="kanchor248"&gt;&lt;/A&gt;&lt;A name="rank"&gt;&lt;/A&gt;&lt;SPAN class="Bold"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="syntax"&gt;&lt;SPAN class="Bold"&gt;It is one of the parameter of &lt;STRONG&gt;Rank&lt;/STRONG&gt; function, which is mode. For more details see the below content from qlikview help.&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="syntax"&gt;&lt;SPAN class="Bold"&gt;You can also search on community for the same for better understanding.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="syntax"&gt;&lt;SPAN class="Bold"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="syntax"&gt;&lt;SPAN class="Bold"&gt;rank(&lt;/SPAN&gt;&lt;SPAN class="Italic"&gt;[ &lt;SPAN class="Bold"&gt;total&lt;/SPAN&gt; ] expression [ , mode [, format ] ]&lt;/SPAN&gt;&lt;SPAN class="Bold"&gt;)&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;Evaluates &lt;SPAN style="font-style: italic;"&gt;expression&lt;/SPAN&gt;, compares the result with the result of the other rows containing the current column segment and returns the ranking of the current row within the segment. For bitmap charts, the current column segment is defined as it appears in the chart's straight table equivalent (Actually all QlikView charts have a straight table equivalent with the exception of the pivot table which has a more complex structure). &lt;/P&gt;&lt;P&gt;If the chart is one-dimensional or if the &lt;SPAN style="font-style: italic;"&gt;expression&lt;/SPAN&gt; is preceded by the &lt;SPAN class="Bold"&gt;total&lt;/SPAN&gt; qualifier, the current column segment is always equal to the entire column. If the table or table equivalent has multiple vertical dimensions, the current column segment will include only rows with the same values as the current row in all dimension columns except for the column showing the last dimension in the inter field sort order. &lt;/P&gt;&lt;P&gt;The ranking is returned as a dual value, which in the case when each row has a unique ranking will be an integer between 1 and the number of rows in the current column segment. &lt;/P&gt;&lt;P&gt;In the case where several rows share the same ranking, the text and number representation can be controlled as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The second parameter &lt;SPAN style="font-style: italic;"&gt;mode&lt;/SPAN&gt; specifies the number representation of the function result. &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-style: italic;"&gt;mode&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;TABLE cellspacing="0" class="TableStyle-LeftBold" style="margin-right: auto;"&gt;&lt;TBODY&gt;&lt;TR class="Body-Body1"&gt;&lt;TD class="BodyE-Column1-Body1"&gt;0 &lt;SPAN class="normal"&gt;(default)&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD class="BodyD-Column2-Body1"&gt;If all ranks within the sharing group fall on the low side of the middle value of the entire ranking, all rows get the lowest rank within the sharing group. &lt;BR /&gt;If all ranks within the sharing group fall on the high side of the middle value of the entire ranking, all rows get the highest rank within the sharing group. &lt;BR /&gt;If ranks within the sharing group span over the middle value of the entire ranking, all rows get the value corresponding to the average of the top and bottom ranking in the entire column segment. &lt;/TD&gt;&lt;/TR&gt;&lt;TR class="Body-Body1"&gt;&lt;TD class="BodyE-Column1-Body1"&gt;1&lt;/TD&gt;&lt;TD class="BodyD-Column2-Body1"&gt;Lowest rank on all rows. &lt;/TD&gt;&lt;/TR&gt;&lt;TR class="Body-Body1"&gt;&lt;TD class="BodyE-Column1-Body1"&gt;2&lt;/TD&gt;&lt;TD class="BodyD-Column2-Body1"&gt;Average rank on all rows. &lt;/TD&gt;&lt;/TR&gt;&lt;TR class="Body-Body1"&gt;&lt;TD class="BodyE-Column1-Body1"&gt;3&lt;/TD&gt;&lt;TD class="BodyD-Column2-Body1"&gt;Highest rank on all rows. &lt;/TD&gt;&lt;/TR&gt;&lt;TR class="Body-Body1"&gt;&lt;TD class="BodyE-Column1-Body1"&gt;4&lt;/TD&gt;&lt;TD class="BodyD-Column2-Body1"&gt;Lowest rank on first row, then incremented by one for each row. &lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Apr 2017 14:27:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Display-Rank-as-Pop-Up/m-p/1325274#M844980</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2017-04-03T14:27:17Z</dc:date>
    </item>
    <item>
      <title>Re: Display Rank as Pop Up?</title>
      <link>https://community.qlik.com/t5/QlikView/Display-Rank-as-Pop-Up/m-p/1325275#M844981</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you so much Kushal,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a request can you guide me on how to change this formula when there are sub categories?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eg: I have a 2nd chart where I display value by categories like Finance, Defense, etc&amp;nbsp; of countries. Should i use set analysis in the formula?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The values in the pop should also change if I apply filter for any of these categories&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Apr 2017 14:41:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Display-Rank-as-Pop-Up/m-p/1325275#M844981</guid>
      <dc:creator />
      <dc:date>2017-04-03T14:41:38Z</dc:date>
    </item>
    <item>
      <title>Re: Display Rank as Pop Up?</title>
      <link>https://community.qlik.com/t5/QlikView/Display-Rank-as-Pop-Up/m-p/1325276#M844982</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you provide example like which chart you are having and how you are going to do the selection and what pop up should show? A sample application would be also helpful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Apr 2017 15:10:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Display-Rank-as-Pop-Up/m-p/1325276#M844982</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2017-04-03T15:10:39Z</dc:date>
    </item>
    <item>
      <title>Re: Display Rank as Pop Up?</title>
      <link>https://community.qlik.com/t5/QlikView/Display-Rank-as-Pop-Up/m-p/1325277#M844983</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The data looks something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Continent, Country, Division, Value&lt;/P&gt;&lt;P&gt;Asia, Japan, Finance, 100&lt;/P&gt;&lt;P&gt;Asia, Japan, Defense, 130&lt;/P&gt;&lt;P&gt;North America, USA, Finance, 110&lt;/P&gt;&lt;P&gt;Europe, UK, Defense, 200&lt;/P&gt;&lt;P&gt;....&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now, I have a stacked chart which shows country and Division as Dimensions with division stacked up in country. I want to show in pop up, Top 3 Countries for that particular division when I hover over that division in that country, even though That country is not in top 3. Right now with the formula we have I am able to display top 3 countries by total value but not by division.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know if you need more details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you so much once again.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Apr 2017 15:16:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Display-Rank-as-Pop-Up/m-p/1325277#M844983</guid>
      <dc:creator />
      <dc:date>2017-04-03T15:16:16Z</dc:date>
    </item>
    <item>
      <title>Re: Display Rank as Pop Up?</title>
      <link>https://community.qlik.com/t5/QlikView/Display-Rank-as-Pop-Up/m-p/1325278#M844984</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kushal, &lt;/P&gt;&lt;P&gt;Can we connect via email for this please if possible?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Tanmay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Apr 2017 17:03:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Display-Rank-as-Pop-Up/m-p/1325278#M844984</guid>
      <dc:creator />
      <dc:date>2017-04-03T17:03:37Z</dc:date>
    </item>
    <item>
      <title>Re: Display Rank as Pop Up?</title>
      <link>https://community.qlik.com/t5/QlikView/Display-Rank-as-Pop-Up/m-p/1325279#M844985</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;see this below which is back end solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data:&lt;/P&gt;&lt;P&gt;LOAD * Inline [&lt;/P&gt;&lt;P&gt;Country,Sales,Divison&lt;/P&gt;&lt;P&gt;US,300,Finance&lt;/P&gt;&lt;P&gt;US,170,Defence&lt;/P&gt;&lt;P&gt;UK,250,Finance&lt;/P&gt;&lt;P&gt;UK,150,Defence&lt;/P&gt;&lt;P&gt;JAPAN,210,Finance&lt;/P&gt;&lt;P&gt;JAPAN,140,Defence&lt;/P&gt;&lt;P&gt;BRAZIL,220,Finance&lt;/P&gt;&lt;P&gt;BRAZIL,160,Defence&lt;/P&gt;&lt;P&gt;INDIA,230,Finance&lt;/P&gt;&lt;P&gt;INDIA,130,Defence];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;New:&lt;/P&gt;&lt;P&gt;LOAD *&lt;/P&gt;&lt;P&gt;Where Sort&amp;lt;=3;&lt;/P&gt;&lt;P&gt;LOAD Country as Top3Contry,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Divison,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Sum(Sales) as Top3CountrySales,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; autonumber(Sum(Sales),Divison) as Sort&lt;/P&gt;&lt;P&gt;Resident Data&lt;/P&gt;&lt;P&gt;Group by Country,Divison&lt;/P&gt;&lt;P&gt;Order by Sales desc;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LET vPopUpBackend = Peek('Popup',0,'New');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Popup expression would be&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=dual(chr(10)&amp;amp;'Top 3 Sales'&amp;amp;chr(10)&amp;amp;Concat(Top3Contry&amp;amp;' : '&amp;amp;Top3CountrySales,chr(10),Sort),Sum(Sales))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Apr 2017 18:19:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Display-Rank-as-Pop-Up/m-p/1325279#M844985</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2017-04-03T18:19:49Z</dc:date>
    </item>
    <item>
      <title>Re: Display Rank as Pop Up?</title>
      <link>https://community.qlik.com/t5/QlikView/Display-Rank-as-Pop-Up/m-p/1325280#M844986</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can mark the above answer as helpful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Apr 2017 04:51:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Display-Rank-as-Pop-Up/m-p/1325280#M844986</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2017-04-04T04:51:25Z</dc:date>
    </item>
  </channel>
</rss>

