<?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: Left join in set analysis? in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Left-join-in-set-analysis/m-p/1972843#M80263</link>
    <description>&lt;P&gt;Hello @&lt;SPAN style="background-color:rgb(255,255,255);color:rgb(46,46,46);font-size:13px;"&gt;&lt;STRONG&gt;qlikeers&lt;/STRONG&gt;&lt;/SPAN&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If my understanding is correct, you would like to know why the following expression:&lt;BR /&gt;&lt;STRONG&gt;=&lt;/STRONG&gt;&lt;SPAN style="color:hsl(210, 75%, 60%);"&gt;&lt;STRONG&gt;If&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN style="color:hsl(210, 75%, 60%);"&gt;&lt;STRONG&gt;Aggr&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;SPAN style="color:hsl(210, 75%, 60%);"&gt;&lt;STRONG&gt;NODISTINCT Sum&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;SPAN style="color:hsl(30, 75%, 60%);"&gt;&lt;STRONG&gt;Days&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;), &lt;/STRONG&gt;&lt;SPAN style="color:hsl(30, 75%, 60%);"&gt;&lt;STRONG&gt;ProdId&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;)&amp;gt;=5,&amp;nbsp;&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN style="color:hsl(210, 75%, 60%);"&gt;&lt;STRONG&gt;Aggr&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;SPAN style="color:hsl(210, 75%, 60%);"&gt;&lt;STRONG&gt;NODISTINCT Sum&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;SPAN style="color:hsl(30, 75%, 60%);"&gt;&lt;STRONG&gt;Value&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;), &lt;/STRONG&gt;&lt;SPAN style="color:hsl(30, 75%, 60%);"&gt;&lt;STRONG&gt;ProdId&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;),&amp;nbsp;&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN style="color:hsl(210, 75%, 60%);"&gt;&lt;STRONG&gt;Null&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;()&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;)&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Has 2 aggregation functions inside. Please allow me to elaborate:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The initial requirement was: &lt;SPAN style="color:hsl(210, 75%, 60%);"&gt;&lt;STRONG&gt;"Get the &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color:hsl(30, 75%, 60%);"&gt;&lt;STRONG&gt;Sum(Value)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color:hsl(210, 75%, 60%);"&gt;&lt;STRONG&gt; for &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color:hsl(30, 75%, 60%);"&gt;&lt;STRONG&gt;individual ProdId&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color:hsl(210, 75%, 60%);"&gt;&lt;STRONG&gt; and &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color:hsl(30, 75%, 60%);"&gt;&lt;STRONG&gt;return only the ProdIds whose Sum(Days)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color:hsl(210, 75%, 60%);"&gt;&lt;STRONG&gt; is grater than &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color:hsl(30, 75%, 60%);"&gt;&lt;STRONG&gt;5&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color:hsl(210, 75%, 60%);"&gt;&lt;STRONG&gt;"&lt;/STRONG&gt;&lt;/SPAN&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Therefore:&lt;/P&gt;
&lt;OL&gt;
 &lt;LI&gt;&lt;SPAN style="color:hsl(210,75%,60%);"&gt;&lt;STRONG&gt;Aggr&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;SPAN style="color:hsl(210,75%,60%);"&gt;&lt;STRONG&gt;NODISTINCT Sum&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;SPAN style="color:hsl(30,75%,60%);"&gt;&lt;STRONG&gt;Days&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;), &lt;/STRONG&gt;&lt;SPAN style="color:hsl(30,75%,60%);"&gt;&lt;STRONG&gt;ProdId&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;)&amp;gt;=5&lt;/STRONG&gt;&lt;SPAN style="color:hsl(0, 0%, 60%);"&gt;&lt;STRONG&gt; // This aggrigation will count all the days for individual products and will return the values: abc=15, bca=4 and cab=16&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/LI&gt;
 &lt;LI&gt;If the result is grater or equal than 5 it will execute &lt;SPAN style="color:hsl(210,75%,60%);"&gt;&lt;STRONG&gt;Aggr&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;SPAN style="color:hsl(210,75%,60%);"&gt;&lt;STRONG&gt;NODISTINCT Sum&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;SPAN style="color:hsl(30,75%,60%);"&gt;&lt;STRONG&gt;Value&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;), &lt;/STRONG&gt;&lt;SPAN style="color:hsl(30,75%,60%);"&gt;&lt;STRONG&gt;ProdId&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;)&lt;/STRONG&gt;, otherwise, it will execute &lt;SPAN style="color:hsl(210, 75%, 60%);"&gt;&lt;STRONG&gt;Null&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;()&lt;/STRONG&gt;&lt;/LI&gt;
 &lt;LI&gt;For the: &lt;SPAN style="color:hsl(210,75%,60%);"&gt;&lt;STRONG&gt;Aggr&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;SPAN style="color:hsl(210,75%,60%);"&gt;&lt;STRONG&gt;NODISTINCT Sum&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;SPAN style="color:hsl(30,75%,60%);"&gt;&lt;STRONG&gt;Value&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;), &lt;/STRONG&gt;&lt;SPAN style="color:hsl(30,75%,60%);"&gt;&lt;STRONG&gt;ProdId&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;)&lt;/STRONG&gt; &lt;SPAN style="color:hsl(0, 0%, 60%);"&gt;&lt;STRONG&gt;// It is the same logic as above. It will sum all the values for individual ProdIds&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&lt;BR /&gt;&lt;SPAN style="color:hsl(0, 75%, 60%);"&gt;&lt;STRONG&gt;NOTE&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;: Please keep in mind that this solution might not be suitable for all use case scenarios.&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is an answer to your questions:&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;STRONG&gt;1) Sum by days, without "ProdId"&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color:hsl(120, 75%, 60%);"&gt;&lt;STRONG&gt;ANS:&lt;/STRONG&gt;&lt;/SPAN&gt; I am not sure if this can be achieved. The reason is that you have to sum the days based on ProdId as condition. Otherwise you will either get the &lt;SPAN style="color:hsl(0, 75%, 60%);"&gt;&lt;STRONG&gt;Sum of day for all the days in the dataset&lt;/STRONG&gt;&lt;/SPAN&gt; or &lt;SPAN style="color:hsl(0, 75%, 60%);"&gt;&lt;STRONG&gt;you will get the sum of days for each row of the dataset individually&lt;/STRONG&gt;&lt;/SPAN&gt;. This means that we won't be able to distinguish, which days are related to which ProdId to ensure that we only show the ProdIds with Sum(Days) &amp;gt;= 5.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Example:&lt;/P&gt;
&lt;P&gt;&lt;IMG src="https://lithium-response-prod.s3.us-west-2.amazonaws.com/qlik.response.lithium.com/RESPONSEIMAGE/0ee0c728-deab-4990-b853-bca3a73f5a09.default.PNG" /&gt;&lt;/P&gt;
&lt;P&gt;As you can see:&lt;/P&gt;
&lt;UL&gt;
 &lt;LI&gt;The &lt;SPAN style="color:hsl(210, 75%, 60%);"&gt;&lt;STRONG&gt;Sum&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;SPAN style="color:hsl(30, 75%, 60%);"&gt;&lt;STRONG&gt;Days&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;)&lt;/STRONG&gt; will give us the sum of the days per row, therefore we can't check which ProdId has all of its days grater than 5 to display it on out final output&lt;/LI&gt;
 &lt;LI&gt;The &lt;SPAN style="color:hsl(210, 75%, 60%);"&gt;&lt;STRONG&gt;Sum&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;SPAN style="color:hsl(210, 75%, 60%);"&gt;&lt;STRONG&gt;TOTAL &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color:hsl(30, 75%, 60%);"&gt;&lt;STRONG&gt;Days&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;)&lt;/STRONG&gt; will give us 35, which means that based on this number we would display all the ProdIds in the final output, which is not what we need, since ProdId bca=4 and thus we have to exclude it from the final table&lt;/LI&gt;
 &lt;LI&gt;The solution that uses ProdId gives us the right number for each row, which means that checking that number we can return the sum of values for the particular product, if the result is grater or equal to 5.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;2) Monthly average - as an arithmetic average over days in a month.&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN style="color:hsl(120, 75%, 60%);"&gt;&lt;STRONG&gt;ANS:&lt;/STRONG&gt;&lt;/SPAN&gt; I am not 100% sure how to achieve it at the moment, but it looks like it is a different requirement from the initial one posted here. I would recommend posting it as a new community post and elaborating in detail as to what you have already implemented and demonstrate with screenshots what you have and what else do you expect to see, just like you did in this post's description. Then perhaps someone can share a valuable suggestion or in case I am able to assist I will also share my thoughts.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color:hsl(0, 0%, 60%);"&gt;&lt;I&gt;&lt;STRONG&gt;I hope that this additional information is helpful. In case the details shared regarding the questions that are related to the initial request are helpful, please mark it as solution to give further visibility to other users as well.&lt;/STRONG&gt;&lt;/I&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 25 Aug 2022 06:56:54 GMT</pubDate>
    <dc:creator>Andrei_Cusnir</dc:creator>
    <dc:date>2022-08-25T06:56:54Z</dc:date>
    <item>
      <title>Left join in set analysis?</title>
      <link>https://community.qlik.com/t5/App-Development/Left-join-in-set-analysis/m-p/1961746#M79277</link>
      <description>&lt;P&gt;Hi!&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="VIiyi"&gt;&lt;SPAN class="JLqJ4b ChMk0b" data-language-for-alternatives="en" data-language-to-translate-into="pl" data-phrase-index="0" data-number-of-phrases="6"&gt;&lt;SPAN class="Q4iAWc"&gt;I have a table as in the example.&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="VIiyi"&gt;&lt;SPAN class="JLqJ4b ChMk0b" data-language-for-alternatives="en" data-language-to-translate-into="pl" data-phrase-index="1" data-number-of-phrases="6"&gt;&lt;SPAN class="Q4iAWc"&gt;Is it possible to get the expected table in set analysis?&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="VIiyi"&gt;&lt;SPAN class="JLqJ4b ChMk0b" data-language-for-alternatives="en" data-language-to-translate-into="pl" data-phrase-index="3" data-number-of-phrases="6"&gt;&lt;SPAN class="Q4iAWc"&gt;The point is that I need to create a list of products with one exclusion (days) first, and then add the sum of value (for a date) to those products without the exclusion (as in the example).&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;SPAN class="JLqJ4b ChMk0b" data-language-for-alternatives="en" data-language-to-translate-into="pl" data-phrase-index="0" data-number-of-phrases="1"&gt;&lt;SPAN class="Q4iAWc"&gt;All from one table.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="VIiyi"&gt;&lt;SPAN class="JLqJ4b ChMk0b" data-language-for-alternatives="en" data-language-to-translate-into="pl" data-phrase-index="5" data-number-of-phrases="6"&gt;&lt;SPAN class="Q4iAWc"&gt;How can this be done?&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Jul 2022 13:36:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Left-join-in-set-analysis/m-p/1961746#M79277</guid>
      <dc:creator>qlikeers</dc:creator>
      <dc:date>2022-07-28T13:36:45Z</dc:date>
    </item>
    <item>
      <title>Re: Left join w set analysis?</title>
      <link>https://community.qlik.com/t5/App-Development/Left-join-in-set-analysis/m-p/1961759#M79282</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Perhaps the following example can help you:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1. I have loaded the dataset:&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://lithium-response-prod.s3.us-west-2.amazonaws.com/qlik.response.lithium.com/RESPONSEIMAGE/6d937374-f9a3-4cc2-aa8a-be36d93a714c.default.PNG" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2. I have created a new Straight table chart with:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Dimension: &lt;SPAN style="color:hsl(30, 75%, 60%);"&gt;&lt;STRONG&gt;Day&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;Dimension: &lt;SPAN style="color:hsl(30, 75%, 60%);"&gt;&lt;STRONG&gt;ProdId&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;Dimension: &lt;STRONG&gt;=&lt;/STRONG&gt;&lt;SPAN style="color:hsl(210, 75%, 60%);"&gt;&lt;STRONG&gt;If&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;SPAN style="color:hsl(210, 75%, 60%);"&gt;&lt;STRONG&gt;Aggr&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;SPAN style="color:hsl(210, 75%, 60%);"&gt;&lt;STRONG&gt;NODISTINCT Sum&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;SPAN style="color:hsl(30, 75%, 60%);"&gt;&lt;STRONG&gt;Days&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;), &lt;/STRONG&gt;&lt;SPAN style="color:hsl(30, 75%, 60%);"&gt;&lt;STRONG&gt;ProdId&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;)&amp;gt;=5, &lt;/STRONG&gt;&lt;SPAN style="color:hsl(210, 75%, 60%);"&gt;&lt;STRONG&gt;Aggr&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;SPAN style="color:hsl(210, 75%, 60%);"&gt;&lt;STRONG&gt;NODISTINCT Sum&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;SPAN style="color:hsl(30, 75%, 60%);"&gt;&lt;STRONG&gt;Value&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;), &lt;/STRONG&gt;&lt;SPAN style="color:hsl(30, 75%, 60%);"&gt;&lt;STRONG&gt;ProdId&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;), &lt;/STRONG&gt;&lt;SPAN style="color:hsl(210, 75%, 60%);"&gt;&lt;STRONG&gt;Null&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;())&lt;/STRONG&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;This expression will sum all the days based each &lt;SPAN style="color:hsl(30, 75%, 60%);"&gt;&lt;STRONG&gt;ProdId &lt;/STRONG&gt;&lt;/SPAN&gt;if it is grater or equal to 5, it will sum the all the &lt;SPAN style="color:hsl(30, 75%, 60%);"&gt;&lt;STRONG&gt;Value &lt;/STRONG&gt;&lt;/SPAN&gt;values per &lt;SPAN style="color:hsl(30, 75%, 60%);"&gt;&lt;STRONG&gt;ProdId&lt;/STRONG&gt;&lt;/SPAN&gt;, otherwise it will return &lt;SPAN style="color:hsl(210, 75%, 60%);"&gt;&lt;STRONG&gt;Null&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;()&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;After that I just &lt;SPAN style="color:hsl(270, 75%, 60%);"&gt;&lt;STRONG&gt;un-checked&lt;/STRONG&gt;&lt;/SPAN&gt; the option &lt;SPAN style="color:hsl(120, 75%, 60%);"&gt;&lt;STRONG&gt;"Include null values"&lt;/STRONG&gt;&lt;/SPAN&gt; and the output is:&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://lithium-response-prod.s3.us-west-2.amazonaws.com/qlik.response.lithium.com/RESPONSEIMAGE/054ed822-1d12-4f55-b787-3d7177698748.default.PNG" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As you can see it is the same with the table that you have shared.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color:hsl(0, 0%, 60%);"&gt;&lt;I&gt;&lt;STRONG&gt;I hope that this information was helpful. In case I have misunderstood the use case scenario, please elaborate in details by providing additional information. However, if it has helped you resolve the issue, addressed your concerns or at least pointed you in the right direction, please mark it as Accepted Solution to give further visibility to other community members.&amp;nbsp;&lt;/STRONG&gt;&lt;/I&gt;&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Jul 2022 12:50:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Left-join-in-set-analysis/m-p/1961759#M79282</guid>
      <dc:creator>Andrei_Cusnir</dc:creator>
      <dc:date>2022-07-28T12:50:20Z</dc:date>
    </item>
    <item>
      <title>Re: Left join w set analysis?</title>
      <link>https://community.qlik.com/t5/App-Development/Left-join-in-set-analysis/m-p/1961780#M79287</link>
      <description>&lt;P&gt;Thanks &lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/146877"&gt;@Andrei_Cusnir&lt;/a&gt; ! This is a possible solution, I think.&lt;/P&gt;
&lt;P&gt;But:&lt;/P&gt;
&lt;P&gt;1) &lt;SPAN class="VIiyi"&gt;&lt;SPAN class="JLqJ4b ChMk0b" data-language-for-alternatives="en" data-language-to-translate-into="pl" data-phrase-index="0" data-number-of-phrases="1"&gt;&lt;SPAN class="Q4iAWc"&gt;How do I make the total work in the table?&lt;BR /&gt;2) How do I get it to work at the bar chart?&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;3) Dimension: &lt;STRONG&gt;=&lt;/STRONG&gt;&lt;SPAN&gt;&lt;STRONG&gt;If&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;SPAN&gt;&lt;STRONG&gt;Aggr&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;SPAN&gt;&lt;STRONG&gt;NODISTINCT Sum&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;SPAN&gt;&lt;STRONG&gt;Days&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;), &lt;/STRONG&gt;&lt;SPAN&gt;&lt;STRONG&gt;ProdId&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;)&amp;gt;=5, &lt;/STRONG&gt;&lt;SPAN&gt;&lt;STRONG&gt;Aggr&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;SPAN&gt;&lt;STRONG&gt;NODISTINCT Sum&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;SPAN&gt;&lt;STRONG&gt;Value&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;), &lt;/STRONG&gt;&lt;SPAN&gt;&lt;STRONG&gt;ProdId&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;), &lt;/STRONG&gt;&lt;SPAN&gt;&lt;STRONG&gt;Null&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;())&lt;/STRONG&gt; - &lt;SPAN class="VIiyi"&gt;&lt;SPAN class="JLqJ4b ChMk0b" data-language-for-alternatives="en" data-language-to-translate-into="pl" data-phrase-index="0" data-number-of-phrases="1"&gt;&lt;SPAN class="Q4iAWc"&gt;It should be a &lt;STRONG&gt;measure&lt;/STRONG&gt;, shouldn't it?&lt;BR /&gt;4) Is there any way to do this without using aggr? With a large amount of data, it is a bit burdensome.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Jul 2022 13:24:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Left-join-in-set-analysis/m-p/1961780#M79287</guid>
      <dc:creator>qlikeers</dc:creator>
      <dc:date>2022-07-28T13:24:15Z</dc:date>
    </item>
    <item>
      <title>Re: Left join in set analysis?</title>
      <link>https://community.qlik.com/t5/App-Development/Left-join-in-set-analysis/m-p/1961801#M79294</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please find below the answers to your questions:&lt;/P&gt;&lt;P&gt;1) How do I make the total work in the table?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color:hsl(210,75%,60%);"&gt;&lt;STRONG&gt;Ans: I am not sure what do you mean "total". Because, in the example provided above, we have "Sum(Sales)" which is the total of Sales. Can you please elaborate in detail as to what exactly you mean?&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;2) How do I get it to work at the bar chart?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color:hsl(210,75%,60%);"&gt;&lt;STRONG&gt;Ans: &lt;/STRONG&gt;&lt;/SPAN&gt;You create a &lt;SPAN style="color:hsl(210,75%,60%);"&gt;&lt;STRONG&gt;Bar chart&lt;/STRONG&gt;&lt;/SPAN&gt; with &lt;SPAN style="color:hsl(30,75%,60%);"&gt;&lt;STRONG&gt;Day &lt;/STRONG&gt;&lt;/SPAN&gt;and &lt;SPAN style="color:hsl(30,75%,60%);"&gt;&lt;STRONG&gt;ProdId &lt;/STRONG&gt;&lt;/SPAN&gt;as &lt;SPAN style="color:hsl(30,75%,60%);"&gt;&lt;STRONG&gt;Dimension&lt;/STRONG&gt;&lt;/SPAN&gt;. Then you add the same expression &lt;STRONG&gt;=&lt;/STRONG&gt;&lt;SPAN style="color:hsl(210,75%,60%);"&gt;&lt;STRONG&gt;If&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;SPAN style="color:hsl(210,75%,60%);"&gt;&lt;STRONG&gt;Aggr&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;SPAN style="color:hsl(210,75%,60%);"&gt;&lt;STRONG&gt;NODISTINCT Sum&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;SPAN style="color:hsl(30,75%,60%);"&gt;&lt;STRONG&gt;Days&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;), &lt;/STRONG&gt;&lt;SPAN style="color:hsl(30,75%,60%);"&gt;&lt;STRONG&gt;ProdId&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;)&amp;gt;=5, &lt;/STRONG&gt;&lt;SPAN style="color:hsl(210,75%,60%);"&gt;&lt;STRONG&gt;Aggr&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;SPAN style="color:hsl(210,75%,60%);"&gt;&lt;STRONG&gt;NODISTINCT Sum&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;SPAN style="color:hsl(30,75%,60%);"&gt;&lt;STRONG&gt;Value&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;), &lt;/STRONG&gt;&lt;SPAN style="color:hsl(30,75%,60%);"&gt;&lt;STRONG&gt;ProdId&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;), &lt;/STRONG&gt;&lt;SPAN style="color:hsl(210,75%,60%);"&gt;&lt;STRONG&gt;Null&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;()) &lt;/STRONG&gt;as &lt;SPAN style="color:hsl(30,75%,60%);"&gt;&lt;STRONG&gt;Measure&lt;/STRONG&gt;&lt;/SPAN&gt;:&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://lithium-response-prod.s3.us-west-2.amazonaws.com/qlik.response.lithium.com/RESPONSEIMAGE/a8f94eb1-bc48-4a42-90ff-36955ff57ba9.default.PNG" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The outcome is the same:&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://lithium-response-prod.s3.us-west-2.amazonaws.com/qlik.response.lithium.com/RESPONSEIMAGE/b404e289-b304-4d6e-a02c-c7e318f5fd3f.default.PNG" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As you can see it is &lt;SPAN style="color:hsl(120, 75%, 60%);"&gt;&lt;STRONG&gt;370 &lt;/STRONG&gt;&lt;/SPAN&gt;for &lt;SPAN style="color:hsl(210, 75%, 60%);"&gt;&lt;STRONG&gt;cab &lt;/STRONG&gt;&lt;/SPAN&gt;and &lt;SPAN style="color:hsl(120, 75%, 60%);"&gt;&lt;STRONG&gt;300 &lt;/STRONG&gt;&lt;/SPAN&gt;for &lt;SPAN style="color:hsl(210, 75%, 60%);"&gt;&lt;STRONG&gt;abc&lt;/STRONG&gt;&lt;/SPAN&gt;. &lt;STRONG&gt;bca &lt;/STRONG&gt;is not visible as it has &lt;SPAN style="color:hsl(210, 75%, 60%);"&gt;&lt;STRONG&gt;Null&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;()&lt;/STRONG&gt; (&lt;I&gt;We ignored it due to total amount of days being less than 5&lt;/I&gt;)&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;3) Dimension: =If(Aggr(NODISTINCT Sum(Days), ProdId)&amp;gt;=5, Aggr(NODISTINCT Sum(Value), ProdId), Null()) - It should be a measure, shouldn't it?&lt;/P&gt;&lt;P&gt;Ans: In Table I have used it as &lt;SPAN style="color:hsl(30, 75%, 60%);"&gt;&lt;STRONG&gt;Dimension &lt;/STRONG&gt;&lt;/SPAN&gt;to get the option &lt;SPAN style="color:hsl(120, 75%, 60%);"&gt;&lt;STRONG&gt;"Include null values"&lt;/STRONG&gt;&lt;/SPAN&gt; and un-check it, to remove the rows entirely. In Bar chart, we have added it as &lt;SPAN style="color:hsl(30, 75%, 60%);"&gt;&lt;STRONG&gt;Measure&lt;/STRONG&gt;&lt;/SPAN&gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;4) Is there any way to do this without using aggr? With a large amount of data, it is a bit burdensome.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color:hsl(210, 75%, 60%);"&gt;&lt;STRONG&gt;Ans: Not 100% sure if it can be done. Because you have to calculate the total amount of days based on individual PordId, this is where Aggr() function is needed.&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color:hsl(0, 0%, 60%);"&gt;&lt;I&gt;&lt;STRONG&gt;I hope that this information is helpful!&amp;nbsp;&lt;/STRONG&gt;&lt;/I&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Jul 2022 13:57:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Left-join-in-set-analysis/m-p/1961801#M79294</guid>
      <dc:creator>Andrei_Cusnir</dc:creator>
      <dc:date>2022-07-28T13:57:03Z</dc:date>
    </item>
    <item>
      <title>Re: Left join in set analysis?</title>
      <link>https://community.qlik.com/t5/App-Development/Left-join-in-set-analysis/m-p/1961832#M79300</link>
      <description>&lt;P&gt;&lt;SPAN class="VIiyi"&gt;&lt;SPAN class="JLqJ4b ChMk0b" data-language-for-alternatives="en" data-language-to-translate-into="pl" data-phrase-index="0" data-number-of-phrases="1"&gt;&lt;SPAN class="Q4iAWc"&gt;Thanks for your reply!&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="VIiyi"&gt;Ad.1.&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN class="VIiyi"&gt;&lt;SPAN class="JLqJ4b ChMk0b" data-language-for-alternatives="en" data-language-to-translate-into="pl" data-phrase-index="0" data-number-of-phrases="1"&gt;&lt;SPAN class="Q4iAWc"&gt;I mean the&amp;nbsp; "Totals function" in measure.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="VIiyi"&gt;&lt;SPAN class="JLqJ4b ChMk0b" data-language-for-alternatives="en" data-language-to-translate-into="pl" data-phrase-index="0" data-number-of-phrases="1"&gt;&lt;SPAN class="Q4iAWc"&gt;Ad.2.&lt;BR /&gt;Ok, actually, and how to get to the higher level; without product dimension; only days?&lt;BR /&gt;&lt;BR /&gt;Ad.3.&lt;BR /&gt;Sure i got it. My point is, then I can't use the "Total" function which is available in measures.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="VIiyi"&gt;&lt;SPAN class="JLqJ4b ChMk0b" data-language-for-alternatives="en" data-language-to-translate-into="pl" data-phrase-index="0" data-number-of-phrases="1"&gt;&lt;SPAN class="Q4iAWc"&gt;Ad.4.&lt;BR /&gt;Ok, thanks. I have to think about something more universal.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;SPAN class="VIiyi"&gt;&lt;SPAN class="JLqJ4b ChMk0b" data-language-for-alternatives="en" data-language-to-translate-into="pl" data-phrase-index="0" data-number-of-phrases="1"&gt;&lt;SPAN class="Q4iAWc"&gt;The question is how to universalise it more; assuming that there will be a table attached that will give the products more dimensions.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Jul 2022 14:28:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Left-join-in-set-analysis/m-p/1961832#M79300</guid>
      <dc:creator>qlikeers</dc:creator>
      <dc:date>2022-07-28T14:28:55Z</dc:date>
    </item>
    <item>
      <title>Re: Left join in set analysis?</title>
      <link>https://community.qlik.com/t5/App-Development/Left-join-in-set-analysis/m-p/1965778#M79594</link>
      <description>&lt;P&gt;Hello @&lt;SPAN style="background-color:rgb(255,255,255);color:rgb(46,46,46);font-size:13px;"&gt;&lt;STRONG&gt;qlikeers&lt;/STRONG&gt;&lt;/SPAN&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Since the initial response looks like a potential solution to the description of the post, I believe that for the latest concerns that you have, it is better to create a new separate post. You can create a new post and elaborate further on the &lt;SPAN style="color:hsl(270, 75%, 60%);"&gt;&lt;STRONG&gt;"how to universalize further"&lt;/STRONG&gt;&lt;/SPAN&gt; the solution that is posted here.&lt;/P&gt;</description>
      <pubDate>Mon, 08 Aug 2022 09:54:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Left-join-in-set-analysis/m-p/1965778#M79594</guid>
      <dc:creator>Andrei_Cusnir</dc:creator>
      <dc:date>2022-08-08T09:54:43Z</dc:date>
    </item>
    <item>
      <title>Re: Left join in set analysis?</title>
      <link>https://community.qlik.com/t5/App-Development/Left-join-in-set-analysis/m-p/1972503#M80236</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/146877"&gt;@Andrei_Cusnir&lt;/a&gt;&amp;nbsp;&lt;SPAN class="VIiyi"&gt;&lt;SPAN class="JLqJ4b ChMk0b" data-language-for-alternatives="en" data-language-to-translate-into="pl" data-phrase-index="0" data-number-of-phrases="1"&gt;&lt;SPAN class="Q4iAWc"&gt;Thank you for all your help on the topic, it's invaluable!&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="VIiyi"&gt;&lt;SPAN class="JLqJ4b ChMk0b" data-language-for-alternatives="en" data-language-to-translate-into="pl" data-phrase-index="0" data-number-of-phrases="1"&gt;&lt;SPAN class="Q4iAWc"&gt;However, may I have two more questions? I don't know, I don't think I fully understand this conditional clause, or rather the use of two aggr functions in it. &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="VIiyi"&gt;&lt;SPAN class="JLqJ4b ChMk0b" data-language-for-alternatives="en" data-language-to-translate-into="pl" data-phrase-index="0" data-number-of-phrases="1"&gt;&lt;SPAN class="Q4iAWc"&gt;How to change it this way to get (without changing your assumptions): &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;SPAN class="VIiyi"&gt;&lt;SPAN class="JLqJ4b ChMk0b" data-language-for-alternatives="en" data-language-to-translate-into="pl" data-phrase-index="0" data-number-of-phrases="1"&gt;&lt;SPAN class="Q4iAWc"&gt;1) Sum by days, without "ProdId", &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;SPAN class="VIiyi"&gt;&lt;SPAN class="JLqJ4b ChMk0b" data-language-for-alternatives="en" data-language-to-translate-into="pl" data-phrase-index="0" data-number-of-phrases="1"&gt;&lt;SPAN class="Q4iAWc"&gt;2) Monthly average - as an arithmetic average over days in a month.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Aug 2022 12:45:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Left-join-in-set-analysis/m-p/1972503#M80236</guid>
      <dc:creator>qlikeers</dc:creator>
      <dc:date>2022-08-24T12:45:54Z</dc:date>
    </item>
    <item>
      <title>Re: Left join in set analysis?</title>
      <link>https://community.qlik.com/t5/App-Development/Left-join-in-set-analysis/m-p/1972843#M80263</link>
      <description>&lt;P&gt;Hello @&lt;SPAN style="background-color:rgb(255,255,255);color:rgb(46,46,46);font-size:13px;"&gt;&lt;STRONG&gt;qlikeers&lt;/STRONG&gt;&lt;/SPAN&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If my understanding is correct, you would like to know why the following expression:&lt;BR /&gt;&lt;STRONG&gt;=&lt;/STRONG&gt;&lt;SPAN style="color:hsl(210, 75%, 60%);"&gt;&lt;STRONG&gt;If&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN style="color:hsl(210, 75%, 60%);"&gt;&lt;STRONG&gt;Aggr&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;SPAN style="color:hsl(210, 75%, 60%);"&gt;&lt;STRONG&gt;NODISTINCT Sum&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;SPAN style="color:hsl(30, 75%, 60%);"&gt;&lt;STRONG&gt;Days&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;), &lt;/STRONG&gt;&lt;SPAN style="color:hsl(30, 75%, 60%);"&gt;&lt;STRONG&gt;ProdId&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;)&amp;gt;=5,&amp;nbsp;&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN style="color:hsl(210, 75%, 60%);"&gt;&lt;STRONG&gt;Aggr&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;SPAN style="color:hsl(210, 75%, 60%);"&gt;&lt;STRONG&gt;NODISTINCT Sum&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;SPAN style="color:hsl(30, 75%, 60%);"&gt;&lt;STRONG&gt;Value&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;), &lt;/STRONG&gt;&lt;SPAN style="color:hsl(30, 75%, 60%);"&gt;&lt;STRONG&gt;ProdId&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;),&amp;nbsp;&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN style="color:hsl(210, 75%, 60%);"&gt;&lt;STRONG&gt;Null&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;()&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;)&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Has 2 aggregation functions inside. Please allow me to elaborate:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The initial requirement was: &lt;SPAN style="color:hsl(210, 75%, 60%);"&gt;&lt;STRONG&gt;"Get the &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color:hsl(30, 75%, 60%);"&gt;&lt;STRONG&gt;Sum(Value)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color:hsl(210, 75%, 60%);"&gt;&lt;STRONG&gt; for &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color:hsl(30, 75%, 60%);"&gt;&lt;STRONG&gt;individual ProdId&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color:hsl(210, 75%, 60%);"&gt;&lt;STRONG&gt; and &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color:hsl(30, 75%, 60%);"&gt;&lt;STRONG&gt;return only the ProdIds whose Sum(Days)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color:hsl(210, 75%, 60%);"&gt;&lt;STRONG&gt; is grater than &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color:hsl(30, 75%, 60%);"&gt;&lt;STRONG&gt;5&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color:hsl(210, 75%, 60%);"&gt;&lt;STRONG&gt;"&lt;/STRONG&gt;&lt;/SPAN&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Therefore:&lt;/P&gt;
&lt;OL&gt;
 &lt;LI&gt;&lt;SPAN style="color:hsl(210,75%,60%);"&gt;&lt;STRONG&gt;Aggr&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;SPAN style="color:hsl(210,75%,60%);"&gt;&lt;STRONG&gt;NODISTINCT Sum&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;SPAN style="color:hsl(30,75%,60%);"&gt;&lt;STRONG&gt;Days&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;), &lt;/STRONG&gt;&lt;SPAN style="color:hsl(30,75%,60%);"&gt;&lt;STRONG&gt;ProdId&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;)&amp;gt;=5&lt;/STRONG&gt;&lt;SPAN style="color:hsl(0, 0%, 60%);"&gt;&lt;STRONG&gt; // This aggrigation will count all the days for individual products and will return the values: abc=15, bca=4 and cab=16&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/LI&gt;
 &lt;LI&gt;If the result is grater or equal than 5 it will execute &lt;SPAN style="color:hsl(210,75%,60%);"&gt;&lt;STRONG&gt;Aggr&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;SPAN style="color:hsl(210,75%,60%);"&gt;&lt;STRONG&gt;NODISTINCT Sum&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;SPAN style="color:hsl(30,75%,60%);"&gt;&lt;STRONG&gt;Value&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;), &lt;/STRONG&gt;&lt;SPAN style="color:hsl(30,75%,60%);"&gt;&lt;STRONG&gt;ProdId&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;)&lt;/STRONG&gt;, otherwise, it will execute &lt;SPAN style="color:hsl(210, 75%, 60%);"&gt;&lt;STRONG&gt;Null&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;()&lt;/STRONG&gt;&lt;/LI&gt;
 &lt;LI&gt;For the: &lt;SPAN style="color:hsl(210,75%,60%);"&gt;&lt;STRONG&gt;Aggr&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;SPAN style="color:hsl(210,75%,60%);"&gt;&lt;STRONG&gt;NODISTINCT Sum&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;SPAN style="color:hsl(30,75%,60%);"&gt;&lt;STRONG&gt;Value&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;), &lt;/STRONG&gt;&lt;SPAN style="color:hsl(30,75%,60%);"&gt;&lt;STRONG&gt;ProdId&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;)&lt;/STRONG&gt; &lt;SPAN style="color:hsl(0, 0%, 60%);"&gt;&lt;STRONG&gt;// It is the same logic as above. It will sum all the values for individual ProdIds&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&lt;BR /&gt;&lt;SPAN style="color:hsl(0, 75%, 60%);"&gt;&lt;STRONG&gt;NOTE&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;: Please keep in mind that this solution might not be suitable for all use case scenarios.&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is an answer to your questions:&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;STRONG&gt;1) Sum by days, without "ProdId"&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color:hsl(120, 75%, 60%);"&gt;&lt;STRONG&gt;ANS:&lt;/STRONG&gt;&lt;/SPAN&gt; I am not sure if this can be achieved. The reason is that you have to sum the days based on ProdId as condition. Otherwise you will either get the &lt;SPAN style="color:hsl(0, 75%, 60%);"&gt;&lt;STRONG&gt;Sum of day for all the days in the dataset&lt;/STRONG&gt;&lt;/SPAN&gt; or &lt;SPAN style="color:hsl(0, 75%, 60%);"&gt;&lt;STRONG&gt;you will get the sum of days for each row of the dataset individually&lt;/STRONG&gt;&lt;/SPAN&gt;. This means that we won't be able to distinguish, which days are related to which ProdId to ensure that we only show the ProdIds with Sum(Days) &amp;gt;= 5.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Example:&lt;/P&gt;
&lt;P&gt;&lt;IMG src="https://lithium-response-prod.s3.us-west-2.amazonaws.com/qlik.response.lithium.com/RESPONSEIMAGE/0ee0c728-deab-4990-b853-bca3a73f5a09.default.PNG" /&gt;&lt;/P&gt;
&lt;P&gt;As you can see:&lt;/P&gt;
&lt;UL&gt;
 &lt;LI&gt;The &lt;SPAN style="color:hsl(210, 75%, 60%);"&gt;&lt;STRONG&gt;Sum&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;SPAN style="color:hsl(30, 75%, 60%);"&gt;&lt;STRONG&gt;Days&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;)&lt;/STRONG&gt; will give us the sum of the days per row, therefore we can't check which ProdId has all of its days grater than 5 to display it on out final output&lt;/LI&gt;
 &lt;LI&gt;The &lt;SPAN style="color:hsl(210, 75%, 60%);"&gt;&lt;STRONG&gt;Sum&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;SPAN style="color:hsl(210, 75%, 60%);"&gt;&lt;STRONG&gt;TOTAL &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color:hsl(30, 75%, 60%);"&gt;&lt;STRONG&gt;Days&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;)&lt;/STRONG&gt; will give us 35, which means that based on this number we would display all the ProdIds in the final output, which is not what we need, since ProdId bca=4 and thus we have to exclude it from the final table&lt;/LI&gt;
 &lt;LI&gt;The solution that uses ProdId gives us the right number for each row, which means that checking that number we can return the sum of values for the particular product, if the result is grater or equal to 5.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;2) Monthly average - as an arithmetic average over days in a month.&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN style="color:hsl(120, 75%, 60%);"&gt;&lt;STRONG&gt;ANS:&lt;/STRONG&gt;&lt;/SPAN&gt; I am not 100% sure how to achieve it at the moment, but it looks like it is a different requirement from the initial one posted here. I would recommend posting it as a new community post and elaborating in detail as to what you have already implemented and demonstrate with screenshots what you have and what else do you expect to see, just like you did in this post's description. Then perhaps someone can share a valuable suggestion or in case I am able to assist I will also share my thoughts.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color:hsl(0, 0%, 60%);"&gt;&lt;I&gt;&lt;STRONG&gt;I hope that this additional information is helpful. In case the details shared regarding the questions that are related to the initial request are helpful, please mark it as solution to give further visibility to other users as well.&lt;/STRONG&gt;&lt;/I&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Aug 2022 06:56:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Left-join-in-set-analysis/m-p/1972843#M80263</guid>
      <dc:creator>Andrei_Cusnir</dc:creator>
      <dc:date>2022-08-25T06:56:54Z</dc:date>
    </item>
    <item>
      <title>Re: Left join in set analysis?</title>
      <link>https://community.qlik.com/t5/App-Development/Left-join-in-set-analysis/m-p/1972880#M80270</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;BR /&gt;
&lt;P&gt;Therefore:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;&lt;SPAN&gt;&lt;STRONG&gt;Aggr&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;SPAN&gt;&lt;STRONG&gt;NODISTINCT Sum&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;(&lt;/STRONG&gt;&lt;SPAN&gt;&lt;STRONG&gt;Days&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;), &lt;/STRONG&gt;&lt;SPAN&gt;&lt;STRONG&gt;ProdId&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt;)&amp;gt;=5&lt;/STRONG&gt;&lt;SPAN&gt;&lt;STRONG&gt; // This aggrigation will count all the days for individual products and will return the values: abc=15, bca=4 and cab=16&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/146877"&gt;@Andrei_Cusnir&lt;/a&gt;&amp;nbsp;&lt;SPAN class="VIiyi"&gt;&lt;SPAN class="JLqJ4b ChMk0b" data-language-for-alternatives="en" data-language-to-translate-into="pl" data-phrase-index="0" data-number-of-phrases="16"&gt;&lt;SPAN class="Q4iAWc"&gt;Thanks again for your help and your time!&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="VIiyi"&gt;&lt;SPAN class="JLqJ4b ChMk0b" data-language-for-alternatives="en" data-language-to-translate-into="pl" data-phrase-index="2" data-number-of-phrases="16"&gt;&lt;SPAN class="Q4iAWc"&gt;Initially, I liked your concept very much and it seemed to work.&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;SPAN class="JLqJ4b ChMk0b" data-language-for-alternatives="en" data-language-to-translate-into="pl" data-phrase-index="3" data-number-of-phrases="16"&gt;&lt;SPAN class="Q4iAWc"&gt;One note as you write:&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;&lt;SPAN class="VIiyi"&gt;&lt;SPAN class="JLqJ4b ChMk0b" data-language-for-alternatives="en" data-language-to-translate-into="pl" data-phrase-index="5" data-number-of-phrases="16"&gt;&lt;SPAN class="Q4iAWc"&gt;This aggrigation will count all the days for individual products and will return the values: abc = 15, bca = 4 and cab = 16&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="VIiyi"&gt;&lt;SPAN class="JLqJ4b ChMk0b" data-language-for-alternatives="en" data-language-to-translate-into="pl" data-phrase-index="7" data-number-of-phrases="16"&gt;&lt;SPAN class="Q4iAWc"&gt;It shouldn't work that way.&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;SPAN class="JLqJ4b ChMk0b" data-language-for-alternatives="en" data-language-to-translate-into="pl" data-phrase-index="8" data-number-of-phrases="16"&gt;&lt;SPAN class="Q4iAWc"&gt;Should check each row in turn, without aggregating.&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;SPAN class="JLqJ4b ChMk0b" data-language-for-alternatives="en" data-language-to-translate-into="pl" data-phrase-index="9" data-number-of-phrases="16"&gt;&lt;SPAN class="Q4iAWc"&gt;So for the product &lt;STRONG&gt;abc&lt;/STRONG&gt; it should take two lines, because each one meets the condition Days&amp;gt; = 5.&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;SPAN class="JLqJ4b ChMk0b" data-language-for-alternatives="en" data-language-to-translate-into="pl" data-phrase-index="10" data-number-of-phrases="16"&gt;&lt;SPAN class="Q4iAWc"&gt;For &lt;STRONG&gt;bca&lt;/STRONG&gt; product it shouldn't take any line.&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;SPAN class="JLqJ4b ChMk0b" data-language-for-alternatives="en" data-language-to-translate-into="pl" data-phrase-index="11" data-number-of-phrases="16"&gt;&lt;SPAN class="Q4iAWc"&gt;And for the &lt;STRONG&gt;cba&lt;/STRONG&gt; product, only the one where the value of Days&amp;gt; = 5.&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;BR /&gt;&lt;SPAN class="JLqJ4b ChMk0b" data-language-for-alternatives="en" data-language-to-translate-into="pl" data-phrase-index="13" data-number-of-phrases="16"&gt;&lt;SPAN class="Q4iAWc"&gt;Sum (Value) (after days) must be added to the list of the above ProdId (after days).&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;BR /&gt;&lt;EM&gt;&lt;SPAN class="JLqJ4b ChMk0b" data-language-for-alternatives="en" data-language-to-translate-into="pl" data-phrase-index="14" data-number-of-phrases="16"&gt;&lt;SPAN class="Q4iAWc"&gt;For some reason I have to do this outside of the "load script".&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;/EM&gt;&lt;BR /&gt;&lt;SPAN class="JLqJ4b ChMk0b" data-language-for-alternatives="en" data-language-to-translate-into="pl" data-phrase-index="15" data-number-of-phrases="16"&gt;&lt;SPAN class="Q4iAWc"&gt;That is why I am writing about lef join in this topic, because in SQL it would look exactly like this (assuming the source table is &lt;EM&gt;&lt;STRONG&gt;tmp) :&lt;BR /&gt;&lt;/STRONG&gt;&lt;/EM&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;select distinct
	tmp.Day,
	tmp.ProdId,
	tmp2.Val

from tmp

LEFT JOIN 
(select
	Day,
	ProdId,
	sum(Value) as Val

from tmp

group by
	Day,
	ProdId) as tmp2

ON tmp.Day = tmp2.Day and tmp.ProdId = tmp2.ProdId

where tmp.Days &amp;gt;= 5
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="VIiyi"&gt;&lt;SPAN class="JLqJ4b ChMk0b" data-language-for-alternatives="en" data-language-to-translate-into="pl" data-phrase-index="0" data-number-of-phrases="1"&gt;&lt;SPAN class="Q4iAWc"&gt;On the basis of such aggregated values, I could probably achieve anything I need.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Aug 2022 08:02:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Left-join-in-set-analysis/m-p/1972880#M80270</guid>
      <dc:creator>qlikeers</dc:creator>
      <dc:date>2022-08-25T08:02:19Z</dc:date>
    </item>
    <item>
      <title>Re: Left join in set analysis?</title>
      <link>https://community.qlik.com/t5/App-Development/Left-join-in-set-analysis/m-p/1972963#M80279</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I see that you would like to achieve this use case scenario within script by using &lt;STRONG&gt;SQL &lt;/STRONG&gt;statement. The solution provided in this post will give you the option to achieve the output table in the &lt;SPAN style="color:hsl(270, 75%, 60%);"&gt;&lt;STRONG&gt;front end&lt;/STRONG&gt;&lt;/SPAN&gt; part so it is partially a solution as you have mentioned and the steps might still help someone else from the community to achieve similar outcome in&lt;SPAN style="color:hsl(270, 75%, 60%);"&gt;&lt;STRONG&gt; front end&lt;/STRONG&gt;&lt;/SPAN&gt;.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However for your particular use case scenario where you have the requirement to make it work in &lt;STRONG&gt;script &lt;/STRONG&gt;and with &lt;STRONG&gt;SQL &lt;/STRONG&gt;statement only, I might not be able to help you as I am not very familiar with this. Since the post has also many comments, it makes it harder for other community members that might know this topic better, to find it and provide you a solution, therefore I recommend you to post a new topic &lt;SPAN style="color:hsl(210, 75%, 60%);"&gt;&lt;STRONG&gt;with the initial screenshots&lt;/STRONG&gt;&lt;/SPAN&gt; attached and ensure that you &lt;SPAN style="color:hsl(210, 75%, 60%);"&gt;&lt;STRONG&gt;specify that the requirement it is to do it with script and SQL only&lt;/STRONG&gt;&lt;/SPAN&gt;. Otherwise, other community members might still share a similar front end solution with Aggr().&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color:hsl(0, 0%, 60%);"&gt;&lt;I&gt;&lt;STRONG&gt;I hope that this information is helpful.&lt;/STRONG&gt;&lt;/I&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Aug 2022 10:31:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Left-join-in-set-analysis/m-p/1972963#M80279</guid>
      <dc:creator>Andrei_Cusnir</dc:creator>
      <dc:date>2022-08-25T10:31:14Z</dc:date>
    </item>
    <item>
      <title>Re: Left join in set analysis?</title>
      <link>https://community.qlik.com/t5/App-Development/Left-join-in-set-analysis/m-p/1972971#M80280</link>
      <description>&lt;P&gt;&lt;SPAN class="VIiyi"&gt;&lt;SPAN class="JLqJ4b ChMk0b" data-language-for-alternatives="en" data-language-to-translate-into="pl" data-phrase-index="0" data-number-of-phrases="4"&gt;&lt;SPAN class="Q4iAWc"&gt;I wrote the SQL only to show what I would like to achieve the end result.&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;SPAN class="JLqJ4b ChMk0b" data-language-for-alternatives="en" data-language-to-translate-into="pl" data-phrase-index="2" data-number-of-phrases="4"&gt;&lt;SPAN class="Q4iAWc"&gt;I would like to do this on the front-end.&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;SPAN class="JLqJ4b ChMk0b" data-language-for-alternatives="en" data-language-to-translate-into="pl" data-phrase-index="3" data-number-of-phrases="4"&gt;&lt;SPAN class="Q4iAWc"&gt;I think your idea is good, but I have no idea how to adapt it.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Aug 2022 10:54:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Left-join-in-set-analysis/m-p/1972971#M80280</guid>
      <dc:creator>qlikeers</dc:creator>
      <dc:date>2022-08-25T10:54:49Z</dc:date>
    </item>
    <item>
      <title>Re: Left join in set analysis?</title>
      <link>https://community.qlik.com/t5/App-Development/Left-join-in-set-analysis/m-p/1976961#M80600</link>
      <description>&lt;P&gt;&lt;SPAN class="VIiyi"&gt;&lt;SPAN class="JLqJ4b ChMk0b" data-language-for-alternatives="en" data-language-to-translate-into="pl" data-phrase-index="0" data-number-of-phrases="1"&gt;&lt;SPAN class="Q4iAWc"&gt;I guess I found a solution to the problem and it was easier than expected &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="VIiyi"&gt;&lt;SPAN class="JLqJ4b ChMk0b" data-language-for-alternatives="en" data-language-to-translate-into="pl" data-phrase-index="0" data-number-of-phrases="7"&gt;&lt;SPAN class="Q4iAWc"&gt;Dimensions:&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN class="VIiyi"&gt;&lt;SPAN class="JLqJ4b ChMk0b" data-language-for-alternatives="en" data-language-to-translate-into="pl" data-phrase-index="2" data-number-of-phrases="7"&gt;&lt;SPAN class="Q4iAWc"&gt;- Days&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;BR /&gt;&lt;SPAN class="JLqJ4b ChMk0b" data-language-for-alternatives="en" data-language-to-translate-into="pl" data-phrase-index="4" data-number-of-phrases="7"&gt;&lt;SPAN class="Q4iAWc"&gt;- ProdId&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="VIiyi"&gt;&lt;SPAN class="JLqJ4b ChMk0b" data-language-for-alternatives="en" data-language-to-translate-into="pl" data-phrase-index="6" data-number-of-phrases="7"&gt;&lt;SPAN class="Q4iAWc"&gt;Measures:&lt;BR /&gt;&lt;STRONG&gt;sum( &lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;{&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&amp;lt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;[ProdId]=p({&amp;lt;[Days] = {"&amp;gt;=5"}&amp;gt;} [ProdId])&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;&amp;gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;} [Value])&lt;/STRONG&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;SPAN class="VIiyi"&gt;&lt;SPAN class="JLqJ4b ChMk0b" data-language-for-alternatives="en" data-language-to-translate-into="pl" data-phrase-index="6" data-number-of-phrases="7"&gt;&lt;SPAN class="Q4iAWc"&gt;&lt;A href="https://community.qlik.com/t5/QlikView-App-Dev/P-E-and-where-do-you-use-them/td-p/457847" target="_blank" rel="noopener"&gt;Useful stuff [CLICK]&lt;/A&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="VIiyi"&gt;&lt;SPAN class="JLqJ4b ChMk0b" data-language-for-alternatives="en" data-language-to-translate-into="pl" data-phrase-index="6" data-number-of-phrases="7"&gt;&lt;SPAN class="Q4iAWc"&gt;Thanks again for your help!&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Sep 2022 13:25:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Left-join-in-set-analysis/m-p/1976961#M80600</guid>
      <dc:creator>qlikeers</dc:creator>
      <dc:date>2022-09-05T13:25:38Z</dc:date>
    </item>
  </channel>
</rss>

