<?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 Dimension visualization in chart in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Dimension-visualization-in-chart/m-p/1001825#M340512</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a table like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ProductID, Color, Value&lt;/P&gt;&lt;P&gt;1, Red, 10&lt;/P&gt;&lt;P&gt;2, Red, 20&lt;/P&gt;&lt;P&gt;3, Blue, 30&lt;/P&gt;&lt;P&gt;4, Green, 20&lt;/P&gt;&lt;P&gt;ecc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to visualize top x Product by Value, but instead of ProductId description, I need to visualize the Color.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example of top 3:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Blue, 30&lt;/P&gt;&lt;P&gt;Green, 20&lt;/P&gt;&lt;P&gt;Red, 20&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;Andrea&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 22 Sep 2015 15:36:45 GMT</pubDate>
    <dc:creator />
    <dc:date>2015-09-22T15:36:45Z</dc:date>
    <item>
      <title>Dimension visualization in chart</title>
      <link>https://community.qlik.com/t5/QlikView/Dimension-visualization-in-chart/m-p/1001825#M340512</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a table like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ProductID, Color, Value&lt;/P&gt;&lt;P&gt;1, Red, 10&lt;/P&gt;&lt;P&gt;2, Red, 20&lt;/P&gt;&lt;P&gt;3, Blue, 30&lt;/P&gt;&lt;P&gt;4, Green, 20&lt;/P&gt;&lt;P&gt;ecc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to visualize top x Product by Value, but instead of ProductId description, I need to visualize the Color.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example of top 3:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Blue, 30&lt;/P&gt;&lt;P&gt;Green, 20&lt;/P&gt;&lt;P&gt;Red, 20&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;Andrea&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Sep 2015 15:36:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dimension-visualization-in-chart/m-p/1001825#M340512</guid>
      <dc:creator />
      <dc:date>2015-09-22T15:36:45Z</dc:date>
    </item>
    <item>
      <title>Re: Dimension visualization in chart</title>
      <link>https://community.qlik.com/t5/QlikView/Dimension-visualization-in-chart/m-p/1001826#M340513</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Caletti,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are a few ways I can think of to do this. Here are a couple ways:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Max Number:&lt;/P&gt;&lt;P&gt;You can set the max number of a straight table (if that is your desired visualization) with the Max Number box checked. As long as you have the table sorted accordingly it should show you the top color's.&lt;/P&gt;&lt;P&gt;Expression for the above chart is MAX(Value).&lt;/P&gt;&lt;P&gt;&lt;IMG alt="image10.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/99709_image10.png" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Dimension Limits&lt;/P&gt;&lt;P&gt;You can use dimension limits to also achieve the same results. This can be used in multiple chart types:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="image11.png" class="jive-image image-2" src="https://community.qlik.com/legacyfs/online/99710_image11.png" style="height: 539px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. Using the rank function:&lt;/P&gt;&lt;P&gt;You can also use the rank function and an if statement in your expression. Please see Qlikview help for the rank function:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rank( [total] expression [, mode [, format]] )&lt;/P&gt;&lt;P&gt;Evaluates expression, compares the result with the result on the&lt;/P&gt;&lt;P&gt;other rows within the current column segment and returns the ranking&lt;/P&gt;&lt;P&gt;of the current row within the segment. For image charts the current&lt;/P&gt;&lt;P&gt;column segment is defined as it appears in the chart's straight&lt;/P&gt;&lt;P&gt;table equivalent.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is "x" a static number or can this value change? If it changes - then you will instead need to introduce a variable that sets these limits.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Camile&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Sep 2015 17:30:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dimension-visualization-in-chart/m-p/1001826#M340513</guid>
      <dc:creator>cjohnson</dc:creator>
      <dc:date>2015-09-22T17:30:34Z</dc:date>
    </item>
    <item>
      <title>Re: Dimension visualization in chart</title>
      <link>https://community.qlik.com/t5/QlikView/Dimension-visualization-in-chart/m-p/1001827#M340514</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Caletti,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use Rank() with Aggr():&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/99713_Capture.PNG" style="height: 167px; width: 620px;" /&gt;&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;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Sep 2015 17:34:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dimension-visualization-in-chart/m-p/1001827#M340514</guid>
      <dc:creator>sinanozdemir</dc:creator>
      <dc:date>2015-09-22T17:34:42Z</dc:date>
    </item>
    <item>
      <title>Re: Dimension visualization in chart</title>
      <link>https://community.qlik.com/t5/QlikView/Dimension-visualization-in-chart/m-p/1001828#M340515</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the easiest and most simple is to use dimension limits&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Sep 2015 17:39:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dimension-visualization-in-chart/m-p/1001828#M340515</guid>
      <dc:creator />
      <dc:date>2015-09-22T17:39:52Z</dc:date>
    </item>
    <item>
      <title>Re: Dimension visualization in chart</title>
      <link>https://community.qlik.com/t5/QlikView/Dimension-visualization-in-chart/m-p/1001829#M340516</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;dimension limit is one of the ways&lt;/P&gt;&lt;P&gt;for other, see&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlikview.com/docs/DOC-5187" title="https://community.qlikview.com/docs/DOC-5187"&gt;Show Top Performers | Qlik Community&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Sep 2015 19:01:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dimension-visualization-in-chart/m-p/1001829#M340516</guid>
      <dc:creator>maxgro</dc:creator>
      <dc:date>2015-09-22T19:01:38Z</dc:date>
    </item>
    <item>
      <title>Re: Dimension visualization in chart</title>
      <link>https://community.qlik.com/t5/QlikView/Dimension-visualization-in-chart/m-p/1001830#M340517</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;another solution could be:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="QlikCommunity_Thread_181848_Pic1.JPG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/99749_QlikCommunity_Thread_181848_Pic1.JPG" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="QlikCommunity_Thread_181848_Pic2.JPG" class="jive-image image-2" src="https://community.qlik.com/legacyfs/online/99750_QlikCommunity_Thread_181848_Pic2.JPG" style="height: 389px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="QlikCommunity_Thread_181848_Pic3.JPG" class="jive-image image-3" src="https://community.qlik.com/legacyfs/online/99751_QlikCommunity_Thread_181848_Pic3.JPG" style="height: 423px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="QlikCommunity_Thread_181848_Pic4.JPG" class="image-4 jive-image" src="https://community.qlik.com/legacyfs/online/99752_QlikCommunity_Thread_181848_Pic4.JPG" style="height: 409px; width: 620px;" /&gt;&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;regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Sep 2015 22:31:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dimension-visualization-in-chart/m-p/1001830#M340517</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2015-09-22T22:31:40Z</dc:date>
    </item>
    <item>
      <title>Re: Dimension visualization in chart</title>
      <link>https://community.qlik.com/t5/QlikView/Dimension-visualization-in-chart/m-p/1001831#M340518</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Marco,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for the useful advices.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think this is the simpler and faster solution to implement for my case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Andrea&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Sep 2015 08:06:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dimension-visualization-in-chart/m-p/1001831#M340518</guid>
      <dc:creator />
      <dc:date>2015-09-23T08:06:24Z</dc:date>
    </item>
    <item>
      <title>Re: Dimension visualization in chart</title>
      <link>https://community.qlik.com/t5/QlikView/Dimension-visualization-in-chart/m-p/1001832#M340519</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Straight table:&lt;/P&gt;&lt;P&gt;Dimension: Color&lt;/P&gt;&lt;P&gt;Measure:&amp;nbsp; Aggr(Max(value),Color)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Sep 2015 08:41:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Dimension-visualization-in-chart/m-p/1001832#M340519</guid>
      <dc:creator>sunilkumarqv</dc:creator>
      <dc:date>2015-09-23T08:41:02Z</dc:date>
    </item>
  </channel>
</rss>

