<?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: AGGR - Trying to sort on 2 dimensions with an expression in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/AGGR-Trying-to-sort-on-2-dimensions-with-an-expression/m-p/2533859#M108301</link>
    <description>&lt;P&gt;I thought I responded on the phone, but it didn't seem to register...&lt;/P&gt;&lt;P&gt;With millions of &lt;EM&gt;distinct&lt;/EM&gt; values, this kind of AGGR most likely won't fly... You'll need to look for a different solution, or come clean with your user that this won't fly with a large dataset.&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Oleg Troyansky&lt;/P&gt;</description>
    <pubDate>Mon, 20 Oct 2025 18:51:57 GMT</pubDate>
    <dc:creator>Oleg_Troyansky</dc:creator>
    <dc:date>2025-10-20T18:51:57Z</dc:date>
    <item>
      <title>AGGR - Trying to sort on 2 dimensions with an expression</title>
      <link>https://community.qlik.com/t5/App-Development/AGGR-Trying-to-sort-on-2-dimensions-with-an-expression/m-p/2533745#M108269</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;I'm going crazy trying to solve something I have some doubt it's even possible, it's why I'm requesting the help of the community.&lt;/P&gt;&lt;P&gt;I have built an example which is not exactly what I need to do but to illustrate, so don't ask why I want to do this :-).&lt;BR /&gt;I want to accumulate an amount ([Amount]) per level ([Level]) across the time but with the dates ([Date]) sorted to show the amounts by ascending order (for each level).&lt;/P&gt;&lt;P&gt;I manage to sort:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;by date:&amp;nbsp;&lt;UL&gt;&lt;LI&gt;&lt;FONT face="courier new,courier" color="#008000"&gt;Aggr( RangeSum( Above( Sum([Amount]), 0, RowNo())), [Level], [Date] )&lt;/FONT&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;by descending date (with an expression just to check that the expression usage works):&lt;UL&gt;&lt;LI&gt;&lt;FONT face="courier new,courier" color="#008000"&gt;Aggr( RangeSum( Above( Sum([Amount]), 0, RowNo())), [Level], ([Date],(=Num([Date]),DESC)) )&lt;/FONT&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;by amount but with total amounts per date (and not by level and by date):&lt;UL&gt;&lt;LI&gt;&lt;FONT face="courier new,courier" color="#008000"&gt;Aggr( RangeSum( Above( Sum([Amount]), 0, RowNo())), [Level], ([Date],(=Sum([Amount]),ASC)) )&lt;/FONT&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;I tried with another Aggr in the sort expression but it's not working:&lt;BR /&gt;&lt;FONT face="courier new,courier" color="#008000"&gt;Aggr( RangeSum( Above( Sum([Amount]), 0, RowNo())), [Level], ([Date], (=Aggr( Sum([Amount]), [Level], [Date]), ASC)) )&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;Do you have an idea? As someone already been facing this kind of request?&lt;/P&gt;&lt;P&gt;Here is what I'm expecting as a result:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="vincent_ardiet_0-1760709163199.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/184300i9F8374840C962207/image-size/medium?v=v2&amp;amp;px=400" role="button" title="vincent_ardiet_0-1760709163199.png" alt="vincent_ardiet_0-1760709163199.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My test script is:&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#008000"&gt;Test:&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" color="#008000"&gt;Load [Level],Date([Date]) as [Date],[Amount] Inline&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" color="#008000"&gt;[Level,Date,Amount&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" color="#008000"&gt;Value1,45894,0&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" color="#008000"&gt;Value1,45895,115&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" color="#008000"&gt;Value1,45896,791&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" color="#008000"&gt;Value1,45897,-17&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" color="#008000"&gt;Value1,45898,-2938&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" color="#008000"&gt;Value1,45901,276&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" color="#008000"&gt;Value1,45902,2819&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" color="#008000"&gt;Value2,45894,0&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" color="#008000"&gt;Value2,45895,67834&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" color="#008000"&gt;Value2,45896,41164&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" color="#008000"&gt;Value2,45897,32626&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" color="#008000"&gt;Value2,45898,-30596&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" color="#008000"&gt;Value2,45901,-54394&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" color="#008000"&gt;Value2,45902,30127&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" color="#008000"&gt;Value3,45894,0&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" color="#008000"&gt;Value3,45895,2893&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" color="#008000"&gt;Value3,45896,-1218&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" color="#008000"&gt;Value3,45897,-1141&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" color="#008000"&gt;Value3,45898,2574&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" color="#008000"&gt;Value3,45901,-2131&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" color="#008000"&gt;Value3,45902,3593&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" color="#008000"&gt;];&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Oct 2025 13:54:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/AGGR-Trying-to-sort-on-2-dimensions-with-an-expression/m-p/2533745#M108269</guid>
      <dc:creator>vincent_ardiet</dc:creator>
      <dc:date>2025-10-17T13:54:16Z</dc:date>
    </item>
    <item>
      <title>Re: AGGR - Trying to sort on 2 dimensions with an expression</title>
      <link>https://community.qlik.com/t5/App-Development/AGGR-Trying-to-sort-on-2-dimensions-with-an-expression/m-p/2533746#M108270</link>
      <description>&lt;P&gt;Hi there!&lt;/P&gt;&lt;P&gt;I'd suggest to consider a couple of ideas:&lt;/P&gt;&lt;P&gt;1. The AGGR returns an array of values by Level and Date. If you wanted to see a single value, perhaps you need to enclose it into another aggregation function - Sum(), Min(), Max(), Avg(), etc...&lt;/P&gt;&lt;P&gt;2. Using ABOVE() with two dimensions is tricky - it's confined within the boundaries of the first dimension values, unless you add the TOTAL qualifier. I believe it should work as expected if you add TOTAL to the ABOVE() function.&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Oleg Troyansky&lt;/P&gt;</description>
      <pubDate>Fri, 17 Oct 2025 14:36:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/AGGR-Trying-to-sort-on-2-dimensions-with-an-expression/m-p/2533746#M108270</guid>
      <dc:creator>Oleg_Troyansky</dc:creator>
      <dc:date>2025-10-17T14:36:32Z</dc:date>
    </item>
    <item>
      <title>Re: AGGR - Trying to sort on 2 dimensions with an expression</title>
      <link>https://community.qlik.com/t5/App-Development/AGGR-Trying-to-sort-on-2-dimensions-with-an-expression/m-p/2533754#M108271</link>
      <description>&lt;P&gt;It's working for the other sorts.&lt;BR /&gt;My problem is I want the sort order of [Date] being different for Level1, Level2 and Level3.&amp;nbsp;&lt;BR /&gt;See here, by descending dates with, there is the expected reset on each level and computing as expected:&lt;BR /&gt;&lt;FONT face="courier new,courier" color="#008000"&gt;Aggr( RangeSum( Above( Sum([Amount]), 0, RowNo())), [Level], ([Date],(=Num([Date]),DESC)) )&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="vincent_ardiet_0-1760713680040.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/184303i7BE323B287C7AFFA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="vincent_ardiet_0-1760713680040.png" alt="vincent_ardiet_0-1760713680040.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If I'm sorting the date with the amount, it's following the global order, not the one by level:&lt;BR /&gt;&lt;FONT face="courier new,courier" color="#008000"&gt;Aggr( RangeSum( Above( Sum([Amount]), 0, RowNo())), [Level], ([Date],(=Sum([Amount]),ASC)) )&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="vincent_ardiet_1-1760713907119.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/184304i0D7FC3C9B5017669/image-size/medium?v=v2&amp;amp;px=400" role="button" title="vincent_ardiet_1-1760713907119.png" alt="vincent_ardiet_1-1760713907119.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you see the screenshot of what I'm expecting, the sort order of dates are not the same for each level.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Oct 2025 15:13:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/AGGR-Trying-to-sort-on-2-dimensions-with-an-expression/m-p/2533754#M108271</guid>
      <dc:creator>vincent_ardiet</dc:creator>
      <dc:date>2025-10-17T15:13:01Z</dc:date>
    </item>
    <item>
      <title>Re: AGGR - Trying to sort on 2 dimensions with an expression</title>
      <link>https://community.qlik.com/t5/App-Development/AGGR-Trying-to-sort-on-2-dimensions-with-an-expression/m-p/2533759#M108273</link>
      <description>&lt;P&gt;I'm wondering if it's possible in fact.&lt;BR /&gt;Because, as you said, an Aggr is like creating a virtual table.&lt;BR /&gt;And, in a table, you cannot do this if I'm not wrong.&lt;BR /&gt;If you change the sort order of [Date], it cannot take in account [Level].&lt;BR /&gt;In this case, we need to replace the dimension [Date] with something like:&lt;BR /&gt;&lt;FONT face="courier new,courier" color="#008000"&gt;=Dual([Date],Aggr(Sum([Amount]),[Level],[Date]))&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;And, we cannot use an expression in an Aggr like something like this:&lt;BR /&gt;&lt;FONT face="courier new,courier" color="#008000"&gt;Sum(Aggr(RangeSum(Above(Sum(Amount), 0, RowNo())), [Level], (=Dual(Date,Aggr(Sum(Amount),Level,Date)),ASC)))&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Oct 2025 15:52:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/AGGR-Trying-to-sort-on-2-dimensions-with-an-expression/m-p/2533759#M108273</guid>
      <dc:creator>vincent_ardiet</dc:creator>
      <dc:date>2025-10-17T15:52:01Z</dc:date>
    </item>
    <item>
      <title>Re: AGGR - Trying to sort on 2 dimensions with an expression</title>
      <link>https://community.qlik.com/t5/App-Development/AGGR-Trying-to-sort-on-2-dimensions-with-an-expression/m-p/2533780#M108278</link>
      <description>&lt;P&gt;Perhaps it could work if you created a combined field Level-Date, and sort that field b by amount as the second dimension of the AGGR, keeping Level as the first dimension?&lt;/P&gt;</description>
      <pubDate>Sat, 18 Oct 2025 12:25:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/AGGR-Trying-to-sort-on-2-dimensions-with-an-expression/m-p/2533780#M108278</guid>
      <dc:creator>Oleg_Troyansky</dc:creator>
      <dc:date>2025-10-18T12:25:44Z</dc:date>
    </item>
    <item>
      <title>Re: AGGR - Trying to sort on 2 dimensions with an expression</title>
      <link>https://community.qlik.com/t5/App-Development/AGGR-Trying-to-sort-on-2-dimensions-with-an-expression/m-p/2533810#M108286</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/35148"&gt;@vincent_ardiet&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Do you want it to be like this?&lt;/P&gt;&lt;P&gt;**** Expression&lt;/P&gt;&lt;P&gt;Sum(Aggr( Rangesum(Above(Sum(Amount),0,RowNo())), (Level, (Numeric, Ascending)), (Amount, (Numeric, Ascending)) ))&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hanna_choi_0-1760938081252.png" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/184324iEFFB5A64B3F47001/image-size/large?v=v2&amp;amp;px=999" role="button" title="hanna_choi_0-1760938081252.png" alt="hanna_choi_0-1760938081252.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Oct 2025 05:28:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/AGGR-Trying-to-sort-on-2-dimensions-with-an-expression/m-p/2533810#M108286</guid>
      <dc:creator>hanna_choi</dc:creator>
      <dc:date>2025-10-20T05:28:37Z</dc:date>
    </item>
    <item>
      <title>Re: AGGR - Trying to sort on 2 dimensions with an expression</title>
      <link>https://community.qlik.com/t5/App-Development/AGGR-Trying-to-sort-on-2-dimensions-with-an-expression/m-p/2533828#M108289</link>
      <description>&lt;P&gt;Yes&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/6152"&gt;@Oleg_Troyansky&lt;/a&gt;, I was also coming to the same conclusion.&amp;nbsp;&lt;BR /&gt;I need to validate the cost in term of time and volume, for my specific needs I will need to create about 250 millions new values. But it seems to be the easiest solution.&lt;/P&gt;</description>
      <pubDate>Mon, 20 Oct 2025 07:08:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/AGGR-Trying-to-sort-on-2-dimensions-with-an-expression/m-p/2533828#M108289</guid>
      <dc:creator>vincent_ardiet</dc:creator>
      <dc:date>2025-10-20T07:08:05Z</dc:date>
    </item>
    <item>
      <title>Re: AGGR - Trying to sort on 2 dimensions with an expression</title>
      <link>https://community.qlik.com/t5/App-Development/AGGR-Trying-to-sort-on-2-dimensions-with-an-expression/m-p/2533829#M108290</link>
      <description>&lt;P&gt;Thanks for checking.&lt;BR /&gt;Your example is working because, out of laziness, the dataset I provided is already an aggregation of amounts. So, sum([Amount]) and [Amount] are identical.&amp;nbsp;&lt;BR /&gt;If you add for example those 2 lines in the inline, you will see that it's not working unfortunately:&lt;BR /&gt;&lt;FONT face="courier new,courier" color="#008000"&gt;Value1,45896,-20000&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" color="#008000"&gt;Value1,45896,20000&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Oct 2025 07:15:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/AGGR-Trying-to-sort-on-2-dimensions-with-an-expression/m-p/2533829#M108290</guid>
      <dc:creator>vincent_ardiet</dc:creator>
      <dc:date>2025-10-20T07:15:00Z</dc:date>
    </item>
    <item>
      <title>Re: AGGR - Trying to sort on 2 dimensions with an expression</title>
      <link>https://community.qlik.com/t5/App-Development/AGGR-Trying-to-sort-on-2-dimensions-with-an-expression/m-p/2533831#M108291</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/35148"&gt;@vincent_ardiet&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It's the amount of the same date, so how about group by it in data load editor?&lt;/P&gt;&lt;P&gt;I applied Group by Level and Date in the Data Load Editor, visualization works normally.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hanna_choi_0-1760946824042.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/184326iA64CADAA43B74B2E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hanna_choi_0-1760946824042.png" alt="hanna_choi_0-1760946824042.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Oct 2025 07:53:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/AGGR-Trying-to-sort-on-2-dimensions-with-an-expression/m-p/2533831#M108291</guid>
      <dc:creator>hanna_choi</dc:creator>
      <dc:date>2025-10-20T07:53:53Z</dc:date>
    </item>
    <item>
      <title>Re: AGGR - Trying to sort on 2 dimensions with an expression</title>
      <link>https://community.qlik.com/t5/App-Development/AGGR-Trying-to-sort-on-2-dimensions-with-an-expression/m-p/2533832#M108292</link>
      <description>&lt;P&gt;I have simplified the model for the community. In reality it's more complex (I have other dimensions) and moreover, we have a drilldown hierarchy on what is equivalent to my [Level] field.&lt;BR /&gt;The aggregation should be done in the chart and cannot be done statically in the loading script.&lt;/P&gt;</description>
      <pubDate>Mon, 20 Oct 2025 08:23:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/AGGR-Trying-to-sort-on-2-dimensions-with-an-expression/m-p/2533832#M108292</guid>
      <dc:creator>vincent_ardiet</dc:creator>
      <dc:date>2025-10-20T08:23:00Z</dc:date>
    </item>
    <item>
      <title>Re: AGGR - Trying to sort on 2 dimensions with an expression</title>
      <link>https://community.qlik.com/t5/App-Development/AGGR-Trying-to-sort-on-2-dimensions-with-an-expression/m-p/2533841#M108297</link>
      <description>&lt;P&gt;In some scenarios it's possible to combine n dimensions / expressions in a mathematical way to get an unique key-value. In your case it might go in an direction like:&lt;/P&gt;&lt;P&gt;(Level * 1000000000) + (Date * 10000) + sum(YourExpr)&lt;/P&gt;&lt;P&gt;Maybe it's an alternative approach to adjust the sorting.&lt;/P&gt;</description>
      <pubDate>Mon, 20 Oct 2025 11:30:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/AGGR-Trying-to-sort-on-2-dimensions-with-an-expression/m-p/2533841#M108297</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2025-10-20T11:30:21Z</dc:date>
    </item>
    <item>
      <title>Re: AGGR - Trying to sort on 2 dimensions with an expression</title>
      <link>https://community.qlik.com/t5/App-Development/AGGR-Trying-to-sort-on-2-dimensions-with-an-expression/m-p/2533846#M108300</link>
      <description>&lt;P&gt;With such a large dataset, I'd be careful. If the number of distinct values is in millions, this AGGR won't fly, unfortunately.&lt;/P&gt;</description>
      <pubDate>Mon, 20 Oct 2025 12:47:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/AGGR-Trying-to-sort-on-2-dimensions-with-an-expression/m-p/2533846#M108300</guid>
      <dc:creator>Oleg_Troyansky</dc:creator>
      <dc:date>2025-10-20T12:47:54Z</dc:date>
    </item>
    <item>
      <title>Re: AGGR - Trying to sort on 2 dimensions with an expression</title>
      <link>https://community.qlik.com/t5/App-Development/AGGR-Trying-to-sort-on-2-dimensions-with-an-expression/m-p/2533859#M108301</link>
      <description>&lt;P&gt;I thought I responded on the phone, but it didn't seem to register...&lt;/P&gt;&lt;P&gt;With millions of &lt;EM&gt;distinct&lt;/EM&gt; values, this kind of AGGR most likely won't fly... You'll need to look for a different solution, or come clean with your user that this won't fly with a large dataset.&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Oleg Troyansky&lt;/P&gt;</description>
      <pubDate>Mon, 20 Oct 2025 18:51:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/AGGR-Trying-to-sort-on-2-dimensions-with-an-expression/m-p/2533859#M108301</guid>
      <dc:creator>Oleg_Troyansky</dc:creator>
      <dc:date>2025-10-20T18:51:57Z</dc:date>
    </item>
    <item>
      <title>Re: AGGR - Trying to sort on 2 dimensions with an expression</title>
      <link>https://community.qlik.com/t5/App-Development/AGGR-Trying-to-sort-on-2-dimensions-with-an-expression/m-p/2533937#M108303</link>
      <description>&lt;P&gt;Using a composite field is working.&lt;BR /&gt;With something around 30% of my final scope, I have created a new table with 2 million rows and 11 columns.&amp;nbsp;&lt;BR /&gt;I've not implemented all the KPI needed however, for the time being, performances are not so bad (specially with an AGGR, an ABOVE and a IF in the expression - I need to compute a linear regression between 2 simulations sorted by an amount when the cumulate weight of their date is going above 5%).&amp;nbsp;&lt;BR /&gt;Previously I was doing this computation using chart scripting, it works but it's slow and the constraints in term of how the results are presented are important (color coding, number format, totals in a separate object...).&lt;/P&gt;</description>
      <pubDate>Tue, 21 Oct 2025 11:03:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/AGGR-Trying-to-sort-on-2-dimensions-with-an-expression/m-p/2533937#M108303</guid>
      <dc:creator>vincent_ardiet</dc:creator>
      <dc:date>2025-10-21T11:03:00Z</dc:date>
    </item>
  </channel>
</rss>

