<?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: Sort Order in Aggregated Text Box in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Sort-Order-in-Aggregated-Text-Box/m-p/71685#M458514</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The basic idea is to add a value much smaller than your primary aggregate to break ties.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If your aggregate is a percentage, a 'much smaller' value would be maybe &amp;lt; 0.001:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f2f2f2;"&gt;=firstsortedvalue(Distinct Product_Name,- Aggr(Sum(Value)&lt;/SPAN&gt;&lt;STRONG style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;+1/(1000+Rank(Product_Name))&lt;/STRONG&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f2f2f2;"&gt;,Product_Name))&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 22 Feb 2018 12:24:56 GMT</pubDate>
    <dc:creator>swuehl</dc:creator>
    <dc:date>2018-02-22T12:24:56Z</dc:date>
    <item>
      <title>Sort Order in Aggregated Text Box</title>
      <link>https://community.qlik.com/t5/QlikView/Sort-Order-in-Aggregated-Text-Box/m-p/71680#M458509</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi There &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a chart&amp;nbsp; sorted by Rank, I also have a text box aligned to this chart to show the top product.&lt;/P&gt;&lt;P&gt;In my example Product H is my top product, based on the Rank Product H and Product I are in rank 1-2, I need to sort my text object&lt;/P&gt;&lt;P&gt;"Z-A" so that Product I is actually displayed, how do I do this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Feb 2018 11:00:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sort-Order-in-Aggregated-Text-Box/m-p/71680#M458509</guid>
      <dc:creator>rido1421</dc:creator>
      <dc:date>2018-02-22T11:00:43Z</dc:date>
    </item>
    <item>
      <title>Re: Sort Order in Aggregated Text Box</title>
      <link>https://community.qlik.com/t5/QlikView/Sort-Order-in-Aggregated-Text-Box/m-p/71681#M458510</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe something like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=firstsortedvalue(Distinct Product_Name,- Aggr(Sum(Value)&lt;STRONG&gt;+1/Rank(Product_Name)&lt;/STRONG&gt;,Product_Name))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Feb 2018 11:04:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sort-Order-in-Aggregated-Text-Box/m-p/71681#M458510</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2018-02-22T11:04:36Z</dc:date>
    </item>
    <item>
      <title>Re: Sort Order in Aggregated Text Box</title>
      <link>https://community.qlik.com/t5/QlikView/Sort-Order-in-Aggregated-Text-Box/m-p/71682#M458511</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Another option&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;=SubField(Concat(Aggr(If(Rank(Value) &amp;lt; 2, Product_Name), Product_Name), '|'), '|', -1)&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Feb 2018 11:22:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sort-Order-in-Aggregated-Text-Box/m-p/71682#M458511</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-02-22T11:22:01Z</dc:date>
    </item>
    <item>
      <title>Re: Sort Order in Aggregated Text Box</title>
      <link>https://community.qlik.com/t5/QlikView/Sort-Order-in-Aggregated-Text-Box/m-p/71683#M458512</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Stefan ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this works for my example but not my actual expression, my actual expression is not a straight sum but a percentage which has been calculated from various if statements. Its returning the last alphabet of all the "Product Names" Im assuming it is doing this because the rank function would sort on the "Value"&amp;nbsp; ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you have any other Ideas?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Feb 2018 12:14:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sort-Order-in-Aggregated-Text-Box/m-p/71683#M458512</guid>
      <dc:creator>rido1421</dc:creator>
      <dc:date>2018-02-22T12:14:22Z</dc:date>
    </item>
    <item>
      <title>Re: Sort Order in Aggregated Text Box</title>
      <link>https://community.qlik.com/t5/QlikView/Sort-Order-in-Aggregated-Text-Box/m-p/71684#M458513</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sunny&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I wouldnt even know how to incorporate that into my expression... below is my expression.&lt;/P&gt;&lt;P&gt;my expression returns one of the highest 1-2&amp;nbsp; but I need it to correspond with the 1st "product" in the table&amp;nbsp; thats why I would sort the top 1-2 alphabetically... and do the same in the table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FirstSortedValue(Distinct Role,-&lt;/P&gt;&lt;P&gt;Aggr(Num(&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If((If(Isnull((Num(Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Excellent)/(Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Excellent)+Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Average)+Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Poor)),'#,##0.00%')) ),0,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Num(Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Excellent)/(Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Excellent)+Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Average)+Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Poor)),'#,##0.00%'))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; *0.70)=0,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; (If(IsNull((Num(Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Excellent)/(Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Excellent)+Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Average)+Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Poor)),'#,##0.00%')) ),0,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Num(Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Excellent)/(Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Excellent)+Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Average)+Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Poor)),'#,##0.00%'))),&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Num(&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(If(IsNull((Num(Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Excellent)/(Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Excellent)+Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Average)+Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Poor)),'#,##0.00%')) ),0,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Num(Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Excellent)/(Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Excellent)+Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Average)+Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Poor)),'#,##0.00%'))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*0.30)))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;+&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If(&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Num(&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(If(IsNull((Num(Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Excellent)/(Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Excellent)+Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Average)+Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Poor)),'#,##0.00%')) ),0,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Num(Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Excellent)/(Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Excellent)+Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Average)+Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Poor)),'#,##0.00%'))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*0.30)) =0,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(If(Isnull((Num(Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Excellent)/(Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Excellent)+Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Average)+Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Poor)),'#,##0.00%')) ),0,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Num(Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Excellent)/(Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Excellent)+Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Average)+Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Poor)),'#,##0.00%'))),&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(If(Isnull((Num(Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Excellent)/(Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Excellent)+Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Average)+Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Poor)),'#,##0.00%')) ),0,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Num(Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Excellent)/(Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Excellent)+Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Average)+Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Poor)),'#,##0.00%'))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; *0.70)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;),'#,##0.00%'),Role)&amp;nbsp; )&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Feb 2018 12:21:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sort-Order-in-Aggregated-Text-Box/m-p/71684#M458513</guid>
      <dc:creator>rido1421</dc:creator>
      <dc:date>2018-02-22T12:21:08Z</dc:date>
    </item>
    <item>
      <title>Re: Sort Order in Aggregated Text Box</title>
      <link>https://community.qlik.com/t5/QlikView/Sort-Order-in-Aggregated-Text-Box/m-p/71685#M458514</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The basic idea is to add a value much smaller than your primary aggregate to break ties.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If your aggregate is a percentage, a 'much smaller' value would be maybe &amp;lt; 0.001:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f2f2f2;"&gt;=firstsortedvalue(Distinct Product_Name,- Aggr(Sum(Value)&lt;/SPAN&gt;&lt;STRONG style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;+1/(1000+Rank(Product_Name))&lt;/STRONG&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f2f2f2;"&gt;,Product_Name))&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Feb 2018 12:24:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sort-Order-in-Aggregated-Text-Box/m-p/71685#M458514</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2018-02-22T12:24:56Z</dc:date>
    </item>
    <item>
      <title>Re: Sort Order in Aggregated Text Box</title>
      <link>https://community.qlik.com/t5/QlikView/Sort-Order-in-Aggregated-Text-Box/m-p/71686#M458515</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be this (Just replace Value with your expression)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;=SubField(Concat(Aggr(If(Rank(&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="color: #ff0000;"&gt;If((If(Isnull((Num(Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Excellent)/(Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Excellent)+Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Average)+Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Poor)),'#,##0.00%')) ),0,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="color: #ff0000;"&gt;Num(Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Excellent)/(Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Excellent)+Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Average)+Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Poor)),'#,##0.00%'))&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="color: #ff0000;"&gt;*0.70)=0,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="color: #ff0000;"&gt;(If(IsNull((Num(Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Excellent)/(Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Excellent)+Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Average)+Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Poor)),'#,##0.00%')) ),0,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="color: #ff0000;"&gt;Num(Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Excellent)/(Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Excellent)+Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Average)+Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Poor)),'#,##0.00%'))),&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="color: #ff0000; font-size: 10pt; font-style: inherit; font-family: inherit;"&gt;Num(&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="color: #ff0000;"&gt;(If(IsNull((Num(Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Excellent)/(Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Excellent)+Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Average)+Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Poor)),'#,##0.00%')) ),0,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="color: #ff0000;"&gt;Num(Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Excellent)/(Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Excellent)+Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Average)+Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Poor)),'#,##0.00%'))&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="color: #ff0000;"&gt;*0.30)))&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="color: #ff0000;"&gt;+&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="color: #ff0000;"&gt;If(&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="color: #ff0000;"&gt;Num(&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="color: #ff0000;"&gt;(If(IsNull((Num(Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Excellent)/(Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Excellent)+Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Average)+Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Poor)),'#,##0.00%')) ),0,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="color: #ff0000;"&gt;Num(Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Excellent)/(Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Excellent)+Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Average)+Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Poor)),'#,##0.00%'))&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="color: #ff0000;"&gt;*0.30)) =0,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="color: #ff0000;"&gt;(If(Isnull((Num(Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Excellent)/(Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Excellent)+Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Average)+Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Poor)),'#,##0.00%')) ),0,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="color: #ff0000;"&gt;Num(Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Excellent)/(Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Excellent)+Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Average)+Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Poor)),'#,##0.00%'))),&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="color: #ff0000;"&gt;(If(Isnull((Num(Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Excellent)/(Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Excellent)+Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Average)+Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Poor)),'#,##0.00%')) ),0,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="color: #ff0000;"&gt;Num(Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Excellent)/(Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Excellent)+Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Average)+Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Poor)),'#,##0.00%'))&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="color: #ff0000;"&gt;*0.70)&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="color: #ff0000;"&gt;)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;) &amp;lt; 2, Role), Role), '|'), '|', -1)&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Feb 2018 12:25:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sort-Order-in-Aggregated-Text-Box/m-p/71686#M458515</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-02-22T12:25:34Z</dc:date>
    </item>
    <item>
      <title>Re: Sort Order in Aggregated Text Box</title>
      <link>https://community.qlik.com/t5/QlikView/Sort-Order-in-Aggregated-Text-Box/m-p/71687#M458516</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sunny &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you this seems to be working, only in one scenario where there is 10 top products , it returns a blank, any idea what could be causing that?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Feb 2018 13:08:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sort-Order-in-Aggregated-Text-Box/m-p/71687#M458516</guid>
      <dc:creator>rido1421</dc:creator>
      <dc:date>2018-02-22T13:08:07Z</dc:date>
    </item>
    <item>
      <title>Re: Sort Order in Aggregated Text Box</title>
      <link>https://community.qlik.com/t5/QlikView/Sort-Order-in-Aggregated-Text-Box/m-p/71688#M458517</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;=SubField(Concat(&lt;SPAN style="color: #ff0000;"&gt;{&amp;lt;Role = {"*"}&amp;gt;}&lt;/SPAN&gt;Aggr(If(Rank(&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;If((If(Isnull((Num(Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Excellent)/(Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Excellent)+Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Average)+Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Poor)),'#,##0.00%')) ),0,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Num(Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Excellent)/(Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Excellent)+Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Average)+Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Poor)),'#,##0.00%'))&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;*0.70)=0,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;(If(IsNull((Num(Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Excellent)/(Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Excellent)+Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Average)+Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Poor)),'#,##0.00%')) ),0,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Num(Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Excellent)/(Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Excellent)+Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Average)+Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Poor)),'#,##0.00%'))),&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Num(&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;(If(IsNull((Num(Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Excellent)/(Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Excellent)+Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Average)+Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Poor)),'#,##0.00%')) ),0,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Num(Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Excellent)/(Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Excellent)+Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Average)+Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Poor)),'#,##0.00%'))&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;*0.30)))&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;+&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;If(&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Num(&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;(If(IsNull((Num(Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Excellent)/(Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Excellent)+Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Average)+Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Poor)),'#,##0.00%')) ),0,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Num(Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Excellent)/(Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Excellent)+Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Average)+Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Poor)),'#,##0.00%'))&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;*0.30)) =0,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;(If(Isnull((Num(Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Excellent)/(Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Excellent)+Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Average)+Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Poor)),'#,##0.00%')) ),0,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Num(Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Excellent)/(Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Excellent)+Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Average)+Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Poor)),'#,##0.00%'))),&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;(If(Isnull((Num(Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Excellent)/(Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Excellent)+Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Average)+Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Poor)),'#,##0.00%')) ),0,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Num(Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Excellent)/(Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Excellent)+Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Average)+Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Poor)),'#,##0.00%'))&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;*0.70)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;)&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;) &amp;lt; 2, Role), Role), '|'), '|', -1)&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Feb 2018 13:12:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sort-Order-in-Aggregated-Text-Box/m-p/71688#M458517</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-02-22T13:12:50Z</dc:date>
    </item>
    <item>
      <title>Re: Sort Order in Aggregated Text Box</title>
      <link>https://community.qlik.com/t5/QlikView/Sort-Order-in-Aggregated-Text-Box/m-p/71689#M458518</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Its still returning the blank, for the scenario where there is 10 top products.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is it not his causing the issue " &lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;) &amp;lt; 2, Role), Role"&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Feb 2018 13:19:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sort-Order-in-Aggregated-Text-Box/m-p/71689#M458518</guid>
      <dc:creator>rido1421</dc:creator>
      <dc:date>2018-02-22T13:19:36Z</dc:date>
    </item>
    <item>
      <title>Re: Sort Order in Aggregated Text Box</title>
      <link>https://community.qlik.com/t5/QlikView/Sort-Order-in-Aggregated-Text-Box/m-p/71690#M458519</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What exactly do you mean 10 top products? Do you mean that same top rank is shared by 10 products?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Feb 2018 13:21:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sort-Order-in-Aggregated-Text-Box/m-p/71690#M458519</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-02-22T13:21:10Z</dc:date>
    </item>
    <item>
      <title>Re: Sort Order in Aggregated Text Box</title>
      <link>https://community.qlik.com/t5/QlikView/Sort-Order-in-Aggregated-Text-Box/m-p/71691#M458520</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes , So 10 products have a rating of 100% so they will all have a rank of 1-10,&lt;/P&gt;&lt;P&gt;in other scenarios where there is 2,5,4 and 6 with 100% it works fine... im only assuming it because its 10 that its giving an issue...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Feb 2018 13:25:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sort-Order-in-Aggregated-Text-Box/m-p/71691#M458520</guid>
      <dc:creator>rido1421</dc:creator>
      <dc:date>2018-02-22T13:25:17Z</dc:date>
    </item>
    <item>
      <title>Re: Sort Order in Aggregated Text Box</title>
      <link>https://community.qlik.com/t5/QlikView/Sort-Order-in-Aggregated-Text-Box/m-p/71692#M458521</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;=SubField(Concat(Aggr(If(&lt;SPAN style="color: #ff0000;"&gt;Num(&lt;/SPAN&gt;Rank(&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;If((If(Isnull((Num(Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Excellent)/(Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Excellent)+Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Average)+Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Poor)),'#,##0.00%')) ),0,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;Num(Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Excellent)/(Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Excellent)+Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Average)+Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Poor)),'#,##0.00%'))&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;*0.70)=0,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;(If(IsNull((Num(Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Excellent)/(Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Excellent)+Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Average)+Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Poor)),'#,##0.00%')) ),0,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;Num(Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Excellent)/(Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Excellent)+Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Average)+Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Poor)),'#,##0.00%'))),&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;Num(&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;(If(IsNull((Num(Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Excellent)/(Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Excellent)+Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Average)+Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Poor)),'#,##0.00%')) ),0,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;Num(Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Excellent)/(Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Excellent)+Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Average)+Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Poor)),'#,##0.00%'))&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;*0.30)))&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;+&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;If(&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;Num(&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;(If(IsNull((Num(Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Excellent)/(Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Excellent)+Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Average)+Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Poor)),'#,##0.00%')) ),0,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;Num(Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Excellent)/(Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Excellent)+Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Average)+Sum({&amp;lt;SurveySource={'Support Survey'}&amp;gt;}Poor)),'#,##0.00%'))&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;*0.30)) =0,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;(If(Isnull((Num(Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Excellent)/(Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Excellent)+Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Average)+Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Poor)),'#,##0.00%')) ),0,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;Num(Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Excellent)/(Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Excellent)+Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Average)+Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Poor)),'#,##0.00%'))),&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;(If(Isnull((Num(Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Excellent)/(Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Excellent)+Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Average)+Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Poor)),'#,##0.00%')) ),0,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;Num(Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Excellent)/(Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Excellent)+Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Average)+Sum({&amp;lt;SurveySource={'mySay'}&amp;gt;}Poor)),'#,##0.00%'))&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;*0.70)&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;)&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&lt;SPAN style="color: #ff0000;"&gt;, 1&lt;/SPAN&gt;)&lt;SPAN style="color: #ff0000;"&gt;)&lt;/SPAN&gt; &amp;lt; 2, Role), Role), '|'), '|', -1)&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Feb 2018 13:42:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sort-Order-in-Aggregated-Text-Box/m-p/71692#M458521</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-02-22T13:42:54Z</dc:date>
    </item>
    <item>
      <title>Re: Sort Order in Aggregated Text Box</title>
      <link>https://community.qlik.com/t5/QlikView/Sort-Order-in-Aggregated-Text-Box/m-p/71693#M458522</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank You Sunny, Brilliant as always!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Feb 2018 13:50:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sort-Order-in-Aggregated-Text-Box/m-p/71693#M458522</guid>
      <dc:creator>rido1421</dc:creator>
      <dc:date>2018-02-22T13:50:40Z</dc:date>
    </item>
  </channel>
</rss>

