<?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: Definition in Pareto in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Definition-in-Pareto/m-p/1571369#M740720</link>
    <description>&lt;P&gt;Thanks for your answer. I am sorry I wasn't more precise.&lt;/P&gt;&lt;P&gt;This one works:&lt;/P&gt;&lt;P&gt;RangeSum(Above(Sum([Afkeur MD (m2)]),0,RowNo()))/Sum(TOTAL([Afkeur MD (m2)]))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But the [Afkeur MD (m2)] needs to be replaced with:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sum ([Lengte])*[effective width]/1000&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And I can't get it working.&lt;/P&gt;</description>
    <pubDate>Fri, 19 Apr 2019 12:03:10 GMT</pubDate>
    <dc:creator>patricwessels</dc:creator>
    <dc:date>2019-04-19T12:03:10Z</dc:date>
    <item>
      <title>Definition in Pareto</title>
      <link>https://community.qlik.com/t5/QlikView/Definition-in-Pareto/m-p/1571333#M740718</link>
      <description>&lt;P&gt;Dear all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can someone tell me whats wrong in this definition:&lt;/P&gt;&lt;P&gt;RangeSum(Above(Sum(Sum([Lengte])*[effective width]/1000),0,RowNo()))/Sum(TOTAL(Sum ([Lengte])*[effective width]/1000)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you in advance!&lt;/P&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Definition-in-Pareto/m-p/1571333#M740718</guid>
      <dc:creator>patricwessels</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Definition in Pareto</title>
      <link>https://community.qlik.com/t5/QlikView/Definition-in-Pareto/m-p/1571366#M740719</link>
      <description>Hi, there are sum inside of sums, and divisor has more opened parenthesys than closed, try with:&lt;BR /&gt;RangeSum(Above(Sum([Lengte])*[effective width]/1000),0,RowNo()))/Sum(TOTAL [Lengte])*[effective width]/1000)</description>
      <pubDate>Fri, 19 Apr 2019 11:58:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Definition-in-Pareto/m-p/1571366#M740719</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2019-04-19T11:58:46Z</dc:date>
    </item>
    <item>
      <title>Re: Definition in Pareto</title>
      <link>https://community.qlik.com/t5/QlikView/Definition-in-Pareto/m-p/1571369#M740720</link>
      <description>&lt;P&gt;Thanks for your answer. I am sorry I wasn't more precise.&lt;/P&gt;&lt;P&gt;This one works:&lt;/P&gt;&lt;P&gt;RangeSum(Above(Sum([Afkeur MD (m2)]),0,RowNo()))/Sum(TOTAL([Afkeur MD (m2)]))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But the [Afkeur MD (m2)] needs to be replaced with:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sum ([Lengte])*[effective width]/1000&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And I can't get it working.&lt;/P&gt;</description>
      <pubDate>Fri, 19 Apr 2019 12:03:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Definition-in-Pareto/m-p/1571369#M740720</guid>
      <dc:creator>patricwessels</dc:creator>
      <dc:date>2019-04-19T12:03:10Z</dc:date>
    </item>
    <item>
      <title>Re: Definition in Pareto</title>
      <link>https://community.qlik.com/t5/QlikView/Definition-in-Pareto/m-p/1571441#M740721</link>
      <description>How is Lengte and effective width related in data model? Maybe you can use applymap when loading data to have both fields multiplied and divided by 1000 when loading, using only one field would be like your initial expression.&lt;BR /&gt;&lt;BR /&gt;I have reviewed my last expression and it has some dditional parenthesys, it should be:&lt;BR /&gt;RangeSum(Above(Sum([Lengte]*[effective width]/1000),0,RowNo()))/Sum(TOTAL [Lengte]*[effective width]/1000)&lt;BR /&gt;&lt;BR /&gt;Or if its in another table with many values or concatenated to Lengte (not in the same row):&lt;BR /&gt;RangeSum(Above(Sum([Lengte])*Sum([effective width])/1000,0,RowNo()))/(Sum(TOTAL [Lengte])*Sum([effective width])/1000)&lt;BR /&gt;&lt;BR /&gt;Or maybe, if effective widht is relateds to one value in another table:&lt;BR /&gt;RangeSum(Above(Sum([Lengte]),0,RowNo()))/Sum(TOTAL [Lengte])*[effective width]/1000</description>
      <pubDate>Fri, 19 Apr 2019 17:38:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Definition-in-Pareto/m-p/1571441#M740721</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2019-04-19T17:38:37Z</dc:date>
    </item>
    <item>
      <title>Re: Definition in Pareto</title>
      <link>https://community.qlik.com/t5/QlikView/Definition-in-Pareto/m-p/1571876#M740722</link>
      <description>&lt;P&gt;&lt;STRONG&gt;I have reviewed my last expression and it has some dditional parenthesys, it should be:&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;RangeSum(Above(Sum([Lengte]*[effective width]/1000),0,RowNo()))/Sum(TOTAL [Lengte]*[effective width]/1000)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;This is it, thanks!&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Apr 2019 06:48:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Definition-in-Pareto/m-p/1571876#M740722</guid>
      <dc:creator>patricwessels</dc:creator>
      <dc:date>2019-04-23T06:48:26Z</dc:date>
    </item>
  </channel>
</rss>

