<?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: Wighted Ranking in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Wighted-Ranking/m-p/1622252#M1247195</link>
    <description>&lt;P&gt;&lt;SPAN&gt;Tobias, did Frank's post and sample app work for you? If so, please be sure to use the Accept as Solution button on his post to give him credit for the help as well as let others know things worked.&amp;nbsp; If you are still having trouble, please provide an update.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Regards,&lt;BR /&gt;Brett&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 10 Sep 2019 16:48:22 GMT</pubDate>
    <dc:creator>Brett_Bleess</dc:creator>
    <dc:date>2019-09-10T16:48:22Z</dc:date>
    <item>
      <title>Wighted Ranking</title>
      <link>https://community.qlik.com/t5/QlikView/Wighted-Ranking/m-p/1619146#M1247188</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I would like to calculate the Rank of a individual country by different wights. The wights I want to adjust by a slider. The Slider is already build an writes to a new variable for every wight e.g.: vWight1 = 30, vWight2 = 40 and vWight3=30 (all Wights together are always 100). For every Country there are 3 different Values to build the Ranking.&amp;nbsp;&lt;/P&gt;&lt;P&gt;The Data looks like this:&lt;/P&gt;&lt;P&gt;Country&amp;nbsp; | Wight ID | Value&lt;/P&gt;&lt;P&gt;Germany | 1 | 34&lt;/P&gt;&lt;P&gt;Germany | 2 | 45&lt;/P&gt;&lt;P&gt;Germany | 3 | 12&lt;/P&gt;&lt;P&gt;UK | 1 | 42&lt;/P&gt;&lt;P&gt;UK | 2 | 76&lt;/P&gt;&lt;P&gt;UK | 3 | 98&lt;/P&gt;&lt;P&gt;USA | 1 | 67&lt;/P&gt;&lt;P&gt;USA | 2 | 65&lt;/P&gt;&lt;P&gt;USA | 3 | 13&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The calculation should now for Germany be:&amp;nbsp;&lt;/P&gt;&lt;P&gt;30*34+40*45+30*12 = Index&lt;/P&gt;&lt;P&gt;And than I want to write to every country a new col with the Ranking 1 to inf ...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have no Idea how to deal with this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Greetings,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Tobias&lt;/P&gt;</description>
      <pubDate>Mon, 26 Jan 2026 18:19:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Wighted-Ranking/m-p/1619146#M1247188</guid>
      <dc:creator>QlikUser555</dc:creator>
      <dc:date>2026-01-26T18:19:17Z</dc:date>
    </item>
    <item>
      <title>Re: Wighted Ranking</title>
      <link>https://community.qlik.com/t5/QlikView/Wighted-Ranking/m-p/1619227#M1247191</link>
      <description>&lt;P&gt;Maybe like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;script&lt;/STRONG&gt;&lt;/U&gt;:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Map:
Mapping Load *Inline [
Wight ID, Wight
1, 30
2, 40
3, 30
];

Test2:
Load *, 
ApplyMap('Map',[Wight ID],Null())*Value as Index;
Load * Inline [
Country  | Wight ID | Value
Germany | 1 | 34
Germany | 2 | 45
Germany | 3 | 12
UK | 1 | 42
UK | 2 | 76
UK | 3 | 98
USA | 1 | 67
USA | 2 | 65
USA | 3 | 13
] (delimiter is |);&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;U&gt;straight Table:&lt;/U&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;dimension:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Country&lt;/LI-CODE&gt;&lt;P&gt;Expressions:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;sum(Index)&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;rank(sum(Index))&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;</description>
      <pubDate>Mon, 02 Sep 2019 10:45:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Wighted-Ranking/m-p/1619227#M1247191</guid>
      <dc:creator>Frank_Hartmann</dc:creator>
      <dc:date>2019-09-02T10:45:18Z</dc:date>
    </item>
    <item>
      <title>Re: Wighted Ranking</title>
      <link>https://community.qlik.com/t5/QlikView/Wighted-Ranking/m-p/1622252#M1247195</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Tobias, did Frank's post and sample app work for you? If so, please be sure to use the Accept as Solution button on his post to give him credit for the help as well as let others know things worked.&amp;nbsp; If you are still having trouble, please provide an update.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Regards,&lt;BR /&gt;Brett&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 10 Sep 2019 16:48:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Wighted-Ranking/m-p/1622252#M1247195</guid>
      <dc:creator>Brett_Bleess</dc:creator>
      <dc:date>2019-09-10T16:48:22Z</dc:date>
    </item>
  </channel>
</rss>

