<?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: Custom percentage calculation in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Custom-percentage-calculation/m-p/742733#M265194</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Simen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I appreciate your prompt reply. In my case(attached QV) has only one dimension, And 'Perc'&amp;nbsp; column is aggregated, I need effect in particular this column only.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your time and effort&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 04 Mar 2015 13:51:13 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2015-03-04T13:51:13Z</dc:date>
    <item>
      <title>Custom percentage calculation</title>
      <link>https://community.qlik.com/t5/QlikView/Custom-percentage-calculation/m-p/742729#M265190</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In below (and attached QV) I need custom percentage, How this possible please?&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="image-1 jive-image" src="https://community.qlik.com/legacyfs/online/79864_Capture.PNG" style="width: 620px; height: 140px;" /&gt;&lt;/P&gt;&lt;P&gt;Perc = (TotalValue / Mar-2012 (15627.62) )* 100&lt;/P&gt;&lt;P&gt;So for Jan-2012 -&amp;gt; (8891.78/15627.62) * 100 = 56.90% and so on&lt;/P&gt;&lt;P&gt;(Mar-2012 value is denominator always in this case)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I appreciate your help&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Mar 2015 13:10:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Custom-percentage-calculation/m-p/742729#M265190</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-03-04T13:10:06Z</dc:date>
    </item>
    <item>
      <title>Re: Custom percentage calculation</title>
      <link>https://community.qlik.com/t5/QlikView/Custom-percentage-calculation/m-p/742730#M265191</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See attached qvw.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Mar 2015 13:21:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Custom-percentage-calculation/m-p/742730#M265191</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2015-03-04T13:21:58Z</dc:date>
    </item>
    <item>
      <title>Re: Custom percentage calculation</title>
      <link>https://community.qlik.com/t5/QlikView/Custom-percentage-calculation/m-p/742731#M265192</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can create a variable that that will calculate March-value and calculate with it. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;create a variable vThisMonthValue as:&lt;/P&gt;&lt;P&gt;=Sum({&amp;lt;YearMonth={$(=Only({&amp;lt;Date={Today}&amp;gt;}YearMonth))}&amp;gt;}Value)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then your expression becomes:&lt;/P&gt;&lt;P&gt;Sum(Value)/$(vThisMonthValue)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you only need to do this for the total column, then play around with:&lt;BR /&gt;Dimensionality() and SecondaryDimensionality() and use them in an if:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i.e:&lt;BR /&gt;if(Dimensionality()=0 and SecondaryDimensionality() = 1,&lt;/P&gt;&lt;P&gt;sum(Value)/$(vThisMonthValue)&lt;/P&gt;&lt;P&gt;,&lt;/P&gt;&lt;P&gt;sum(Value/SomeOtherValue&lt;/P&gt;&lt;P&gt;)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Mar 2015 13:33:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Custom-percentage-calculation/m-p/742731#M265192</guid>
      <dc:creator>simenkg</dc:creator>
      <dc:date>2015-03-04T13:33:24Z</dc:date>
    </item>
    <item>
      <title>Re: Custom percentage calculation</title>
      <link>https://community.qlik.com/t5/QlikView/Custom-percentage-calculation/m-p/742732#M265193</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gysbert&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is no attachment please.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Mar 2015 13:34:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Custom-percentage-calculation/m-p/742732#M265193</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-03-04T13:34:46Z</dc:date>
    </item>
    <item>
      <title>Re: Custom percentage calculation</title>
      <link>https://community.qlik.com/t5/QlikView/Custom-percentage-calculation/m-p/742733#M265194</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Simen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I appreciate your prompt reply. In my case(attached QV) has only one dimension, And 'Perc'&amp;nbsp; column is aggregated, I need effect in particular this column only.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your time and effort&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Mar 2015 13:51:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Custom-percentage-calculation/m-p/742733#M265194</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-03-04T13:51:13Z</dc:date>
    </item>
  </channel>
</rss>

