<?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: showing values in % in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/showing-values-in/m-p/515751#M1124804</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Yousuf,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you upload a screenshot of this?&amp;nbsp; Or if you have dummy data in there the document itself.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Steve&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 20 Dec 2013 18:35:37 GMT</pubDate>
    <dc:creator>stevedark</dc:creator>
    <dc:date>2013-12-20T18:35:37Z</dc:date>
    <item>
      <title>showing values in %</title>
      <link>https://community.qlik.com/t5/QlikView/showing-values-in/m-p/515745#M1124794</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;i have a stack bar chart wherein the values are alreday converted and displayed in $,mm Format and finally shown without the M symbol (eg: 1500).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To explain things more clearly, i have 4 regions on x-axis and there are designations grouped as stacked.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For the first bar, the numbers shown for the first region (Eg: Asia) are as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Director: 1500&lt;/P&gt;&lt;P&gt;VP: 1300&lt;/P&gt;&lt;P&gt;AVP: 800&lt;/P&gt;&lt;P&gt;svp: 500&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i want to convert them in % so that the total of it should sum up t0 100%.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For director it should show 37% (1500/4100)&lt;/P&gt;&lt;P&gt;For VP it should show 32% and so on&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope the explanation is clear enough&lt;/P&gt;&lt;P&gt;Really looking forward for a solution to this since i have my data always in million dollar and would like to show convert them into % format even while using a pie chart.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Dec 2013 17:37:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/showing-values-in/m-p/515745#M1124794</guid>
      <dc:creator />
      <dc:date>2013-12-20T17:37:48Z</dc:date>
    </item>
    <item>
      <title>Re: showing values in %</title>
      <link>https://community.qlik.com/t5/QlikView/showing-values-in/m-p/515746#M1124796</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use the TOTAL qualifier in your denominator aggregation:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=sum(Sales) / sum(TOTAL&amp;lt;Region&amp;gt; Sales)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where Region is your first dimension field and Sales the field you aggregate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then use the number tab of the chart properties to format as percentage.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Dec 2013 17:42:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/showing-values-in/m-p/515746#M1124796</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2013-12-20T17:42:09Z</dc:date>
    </item>
    <item>
      <title>Re: showing values in %</title>
      <link>https://community.qlik.com/t5/QlikView/showing-values-in/m-p/515747#M1124798</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Yousef,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Typically you would do that with the TOTAL function, so if your expression is sum(Value) percentage would be:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;sum(Value) / sum(TOTAL Value)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where the TOTAL causes the divisor to calculate across all dimensions.&amp;nbsp; If you have two dimensions in your chart (say in a Pivot) you can do the total across a second dimension:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;sum(Value) / sum(TOTAL &amp;lt;Dimension&amp;gt; Value)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;If you want to ignore selections on a certain field (so you always look at the total, not the total of selected items) you can use set analysis to ignore some selections in the total:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;sum(Value) / sum({&amp;lt;Dimension=}&amp;gt;} TOTAL Value)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Hope that helps,&lt;/P&gt;&lt;P&gt;Steve&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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Dec 2013 17:43:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/showing-values-in/m-p/515747#M1124798</guid>
      <dc:creator>stevedark</dc:creator>
      <dc:date>2013-12-20T17:43:42Z</dc:date>
    </item>
    <item>
      <title>Re: showing values in %</title>
      <link>https://community.qlik.com/t5/QlikView/showing-values-in/m-p/515748#M1124800</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Chart Properties -&amp;gt;Expressions Enable the &lt;STRONG&gt;Relative Check Box&lt;/STRONG&gt; .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Dec 2013 17:46:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/showing-values-in/m-p/515748#M1124800</guid>
      <dc:creator />
      <dc:date>2013-12-20T17:46:57Z</dc:date>
    </item>
    <item>
      <title>Re: showing values in %</title>
      <link>https://community.qlik.com/t5/QlikView/showing-values-in/m-p/515749#M1124802</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the promt reply. This worked. The only problem that i face is that the data labels are missing in some places. For eg: if there are 4 desgignation for a region, it shows data labels only for 3 designations.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any idea why that is happening. On mouse over, it shows the value as 8% but that is not displayed on the bar.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Dec 2013 18:04:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/showing-values-in/m-p/515749#M1124802</guid>
      <dc:creator />
      <dc:date>2013-12-20T18:04:18Z</dc:date>
    </item>
    <item>
      <title>Re: showing values in %</title>
      <link>https://community.qlik.com/t5/QlikView/showing-values-in/m-p/515750#M1124803</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use relative in chart proprties &amp;gt; expression tab&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Dec 2013 18:27:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/showing-values-in/m-p/515750#M1124803</guid>
      <dc:creator>preminqlik</dc:creator>
      <dc:date>2013-12-20T18:27:07Z</dc:date>
    </item>
    <item>
      <title>Re: showing values in %</title>
      <link>https://community.qlik.com/t5/QlikView/showing-values-in/m-p/515751#M1124804</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Yousuf,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you upload a screenshot of this?&amp;nbsp; Or if you have dummy data in there the document itself.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Steve&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Dec 2013 18:35:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/showing-values-in/m-p/515751#M1124804</guid>
      <dc:creator>stevedark</dc:creator>
      <dc:date>2013-12-20T18:35:37Z</dc:date>
    </item>
    <item>
      <title>Re: showing values in %</title>
      <link>https://community.qlik.com/t5/QlikView/showing-values-in/m-p/515752#M1124805</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Excellent. What a great help!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Dec 2015 13:22:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/showing-values-in/m-p/515752#M1124805</guid>
      <dc:creator>nico_ilog</dc:creator>
      <dc:date>2015-12-01T13:22:50Z</dc:date>
    </item>
    <item>
      <title>Re: showing values in %</title>
      <link>https://community.qlik.com/t5/QlikView/showing-values-in/m-p/515753#M1124806</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Yousuf,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Did you get any solution for this. Because, I am having same issue... &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 29 May 2016 08:59:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/showing-values-in/m-p/515753#M1124806</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2016-05-29T08:59:05Z</dc:date>
    </item>
  </channel>
</rss>

