<?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: Set analysis vs precalculated column in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Set-analysis-vs-precalculated-column/m-p/97326#M15596</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Right, calculating additional columns and joining when possible is recommended if resources permit. The most expensive part here is the time it takes to JOIN, once it is done, the footprint in memory will not be much higher. But the JOIN operation is what is resource consuming, not the result.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The more tables you have which are part of the calculation, yes, it will require more CPU. Another word of caution here, some parts of the calculation are single threaded, so having more CPUs or more powerful ones will not guarantee a better result.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is a very nice overview: &lt;A href="https://community.qlik.com/qlik-blogpost/3238"&gt;The Calculation Engine&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 22 Aug 2018 08:54:13 GMT</pubDate>
    <dc:creator>Miguel_Angel_Baeyens</dc:creator>
    <dc:date>2018-08-22T08:54:13Z</dc:date>
    <item>
      <title>Set analysis vs precalculated column</title>
      <link>https://community.qlik.com/t5/QlikView/Set-analysis-vs-precalculated-column/m-p/97315#M15585</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would like to know which is more performant to calculate an expression on a certain data subset:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Using set analysis \ set modifier to select the desired subset&lt;/LI&gt;&lt;LI&gt;Create a new, dedicated field in the data warehouse that has the data we need for the subset records and zero/null for the others.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dummy example: Calculate the SUM of all [Units] sold which have [Color]=Green:&lt;/P&gt;&lt;P&gt;1) SUM({$&amp;lt;[Color]={Green}&amp;gt;} [Units]&lt;/P&gt;&lt;P&gt;2) On script load, have an additional field [Green Units] calculated as if([Color]=Green,[Units],0)&lt;/P&gt;&lt;P&gt;then the expression is simply SUM([Green Units])&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Which is faster and/or lighter on resources? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Aug 2018 07:14:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-analysis-vs-precalculated-column/m-p/97315#M15585</guid>
      <dc:creator>gmenoutis</dc:creator>
      <dc:date>2018-08-02T07:14:39Z</dc:date>
    </item>
    <item>
      <title>Re: Set analysis vs precalculated column</title>
      <link>https://community.qlik.com/t5/QlikView/Set-analysis-vs-precalculated-column/m-p/97316#M15586</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I believe the second option would be more performance efficient as it's a sum and it doesn't have to do anything else.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That being said SET analysis are very efficient though so it really depends. If you have several needs to use a different color then I think it's fine to use the SET analysis expression instead of one column for each color.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ali A&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Aug 2018 07:20:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-analysis-vs-precalculated-column/m-p/97316#M15586</guid>
      <dc:creator>bwisealiahmad</dc:creator>
      <dc:date>2018-08-02T07:20:46Z</dc:date>
    </item>
    <item>
      <title>Re: Set analysis vs precalculated column</title>
      <link>https://community.qlik.com/t5/QlikView/Set-analysis-vs-precalculated-column/m-p/97317#M15587</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;2nd one is the more faster approach, you're filtering the non required data in scripting &amp;amp; decreasing the application size as well as load time. So the next level expressions won't use more size.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With SET we used to do predefined calculations as per requirement after the data model created, only required data is loaded into application.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Aug 2018 10:38:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-analysis-vs-precalculated-column/m-p/97317#M15587</guid>
      <dc:creator>BalaBhaskar_Qlik</dc:creator>
      <dc:date>2018-08-02T10:38:02Z</dc:date>
    </item>
    <item>
      <title>Re: Set analysis vs precalculated column</title>
      <link>https://community.qlik.com/t5/QlikView/Set-analysis-vs-precalculated-column/m-p/97318#M15588</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm not sure I agree with what you say. &lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P&gt;Bala Bhaskar wrote:&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;2nd one is the more faster approach, you're filtering the non required data in scripting &amp;amp; decreasing the application size as well as load time&lt;/P&gt;
&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;I am doing nothing to filter data. The rows are the same, and in a rather opposite function than what you describe, I am &lt;EM&gt;adding&lt;/EM&gt; a column. I am not neglecting to load the original [Units] column, and neither am I loading WHERE [Green Units]&amp;gt;=0 or anything like that. The application size should obviously get bigger. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Aug 2018 10:44:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-analysis-vs-precalculated-column/m-p/97318#M15588</guid>
      <dc:creator>gmenoutis</dc:creator>
      <dc:date>2018-08-02T10:44:23Z</dc:date>
    </item>
    <item>
      <title>Re: Set analysis vs precalculated column</title>
      <link>https://community.qlik.com/t5/QlikView/Set-analysis-vs-precalculated-column/m-p/97319#M15589</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think option 2 will work faster as it doesn't need to filter on anything and can get straight to the business of summing the field... but, remember that by adding new field (fields) you are probably increasing the size of the dashboard... this might be okay for few fields, but as things begin to increase... it might start to impacting performance. So, even though it option 1 might not be the best option, I would choose it over option 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Having said all this, I would love to hear what experts have to say about this&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-users/3540"&gt;pcammaert&lt;/A&gt;‌, &lt;A href="https://community.qlik.com/qlik-users/2286"&gt;rwunderlich&lt;/A&gt;‌, &lt;A href="https://community.qlik.com/qlik-users/4003"&gt;hic&lt;/A&gt;‌&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Aug 2018 11:57:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-analysis-vs-precalculated-column/m-p/97319#M15589</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2018-08-02T11:57:52Z</dc:date>
    </item>
    <item>
      <title>Re: Set analysis vs precalculated column</title>
      <link>https://community.qlik.com/t5/QlikView/Set-analysis-vs-precalculated-column/m-p/97320#M15590</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If only speed is concerned, option 2 must be the fastest. The difference depends on the amount of data to process, since the variable setup cost of figuring out the set analysis-controlled subset decreases with the number of rows but maintains the fixed setup cost of analysing the set analysis expression which becomes more important with fewer rows. But then we're talking about fractions of microseconds.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If performance in general is concerned, you should balance all effects just like Sunny did.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Aug 2018 09:15:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-analysis-vs-precalculated-column/m-p/97320#M15590</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2018-08-20T09:15:52Z</dc:date>
    </item>
    <item>
      <title>Re: Set analysis vs precalculated column</title>
      <link>https://community.qlik.com/t5/QlikView/Set-analysis-vs-precalculated-column/m-p/97321#M15591</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think it depends on various things which way might be the most suitable but quite probably I would choose - like Sunny and Peter - the set analysis approach because it's usually very fast even with large datasets. Further I assume that there are other colors, too. And if you creates for each one a new field you won't not only clutter your datamodel else you will quite probably decrease the performance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you have no serious issues with the performance the set analysis will definitely work well. If you want to improve it a bit you could change the 'Green' string-value against a numeric value like 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Aug 2018 13:05:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-analysis-vs-precalculated-column/m-p/97321#M15591</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2018-08-20T13:05:21Z</dc:date>
    </item>
    <item>
      <title>Re: Set analysis vs precalculated column</title>
      <link>https://community.qlik.com/t5/QlikView/Set-analysis-vs-precalculated-column/m-p/97322#M15592</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Subscribing Sunny, Peter and Marcus's comments: is performance good enough or does it required fine tuning?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The second is faster for the front-end developer (simpler expressions) and for the user, but has a tradeoff in loading time, assuming the operation is not as obvious as in the example and that the transformation happens in the loading script. Anyway, this tradeoff is usually preferable than longer response times for the users. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Size of the resulting tables or RAM footprint, unless we are talking here of hundreds of millions of rows and dozens of new columns, will not be an issue. As a rule of thumb, more columns are generally better performing that more complex expressions. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Even set analysis requires additional filtering to the aggregation, which takes time. More so, if the fields used in the set analysis modifiers are in different data tables than the fields on which the aggregation happens (e.g.: Color in a dimensional table and Units in a fact table). It also uses some more CPU than straight aggregation. Cache/RAM will not vary substantially in either case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And definitely as suggested above, use numeric values as often as possible.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Aug 2018 14:26:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-analysis-vs-precalculated-column/m-p/97322#M15592</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2018-08-20T14:26:38Z</dc:date>
    </item>
    <item>
      <title>Re: Set analysis vs precalculated column</title>
      <link>https://community.qlik.com/t5/QlikView/Set-analysis-vs-precalculated-column/m-p/97323#M15593</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Nice info there. Furthermore, I wish you'd clarify the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P&gt;assuming the operation is not as obvious as in the example&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;
&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Which operation are you referring to? I guess the data warehouses' if() ?&lt;SPAN style="background-color: transparent; font-family: arial, helvetica, sans-serif; font-size: 10pt;"&gt; As a matter of fact, the example is very&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; close (Actually, only the field names change) to the fact; because in the case of set analysis, to make sure I use&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; only one flag, there is already such a field calculated from the data output source (SQL)&lt;/SPAN&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P&gt;Even set analysis requires additional filtering to the aggregation, which takes time. &lt;/P&gt;
&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;The "even" part confuses me. In the second case, nothing will be filtered, but internally there will be &lt;/SPAN&gt;additions with&lt;SPAN style="font-size: 10pt;"&gt; zero performed...right?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Aug 2018 06:36:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-analysis-vs-precalculated-column/m-p/97323#M15593</guid>
      <dc:creator>gmenoutis</dc:creator>
      <dc:date>2018-08-22T06:36:44Z</dc:date>
    </item>
    <item>
      <title>Re: Set analysis vs precalculated column</title>
      <link>https://community.qlik.com/t5/QlikView/Set-analysis-vs-precalculated-column/m-p/97324#M15594</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="font-size: 13.3333px;"&gt;Which operation are you referring to? I guess the data warehouses' if() ?&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;I'm referring to whichever transformations are required during or after the load of the data. Loading data as it is from the source without any transformation is faster than any transformation you have to do on the script.&lt;/P&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 10pt;"&gt;The "even" part confuses me. In the second case, nothing will be filtered, but internally there will be &lt;/SPAN&gt;additions with&lt;SPAN style="font-size: 10pt;"&gt; zero performed...right?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;The "even" refers to the fact that set analysis, when properly used, is extremely fast, faster than it's equivalent If() clause:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sum({&amp;lt; Color = {'Green'} &amp;gt;} Units) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;will be faster than&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sum(If(Color = 'Green', Units))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yet, set analysis is still a filter which has to be calculated and applied to the chart.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the second case you mention, it's an If() in the script and a Sum(Units) in the front-end, there is no set analysis there. That's why most of us recommend the second approach &lt;STRONG&gt;&lt;EM&gt;if&lt;/EM&gt;&lt;/STRONG&gt; response times are an issue (saving the time it may take the set analysis to calculate), because if they are not, set analysis will work well enough and you avoid transformations on the data load.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Aug 2018 06:51:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-analysis-vs-precalculated-column/m-p/97324#M15594</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2018-08-22T06:51:27Z</dc:date>
    </item>
    <item>
      <title>Re: Set analysis vs precalculated column</title>
      <link>https://community.qlik.com/t5/QlikView/Set-analysis-vs-precalculated-column/m-p/97325#M15595</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I understand your points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After all is said and done, it's a classic balance (and maybe a little gamble) matter on memory vs cpu right?&lt;/P&gt;&lt;P&gt;(With maximum response time in mind and not caring too much about loading time):&lt;/P&gt;&lt;P&gt;If I am sure memory will not fail me, my best bet will be to calculate on-script additional columns and directly reference them on my expressions. Going one step further, I could even join small tables to large ones and completely eradicate the small ones...again, if memory is enough.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But if it is NOT enough, then I should stick to the more normalized data warehouse form and set analysis. That will need the cpu to be making the calculations on the spot.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Right?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Aug 2018 06:59:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-analysis-vs-precalculated-column/m-p/97325#M15595</guid>
      <dc:creator>gmenoutis</dc:creator>
      <dc:date>2018-08-22T06:59:21Z</dc:date>
    </item>
    <item>
      <title>Re: Set analysis vs precalculated column</title>
      <link>https://community.qlik.com/t5/QlikView/Set-analysis-vs-precalculated-column/m-p/97326#M15596</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Right, calculating additional columns and joining when possible is recommended if resources permit. The most expensive part here is the time it takes to JOIN, once it is done, the footprint in memory will not be much higher. But the JOIN operation is what is resource consuming, not the result.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The more tables you have which are part of the calculation, yes, it will require more CPU. Another word of caution here, some parts of the calculation are single threaded, so having more CPUs or more powerful ones will not guarantee a better result.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is a very nice overview: &lt;A href="https://community.qlik.com/qlik-blogpost/3238"&gt;The Calculation Engine&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Aug 2018 08:54:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-analysis-vs-precalculated-column/m-p/97326#M15596</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2018-08-22T08:54:13Z</dc:date>
    </item>
    <item>
      <title>Re: Set analysis vs precalculated column</title>
      <link>https://community.qlik.com/t5/QlikView/Set-analysis-vs-precalculated-column/m-p/97327#M15597</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is very intersting. I'd expect memory to be an issue - does this mean I should try to make a huge monolith table joining all the others in it then?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, the provided link and its other linked topics are very good reference - thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Aug 2018 09:06:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-analysis-vs-precalculated-column/m-p/97327#M15597</guid>
      <dc:creator>gmenoutis</dc:creator>
      <dc:date>2018-08-22T09:06:33Z</dc:date>
    </item>
    <item>
      <title>Re: Set analysis vs precalculated column</title>
      <link>https://community.qlik.com/t5/QlikView/Set-analysis-vs-precalculated-column/m-p/97328#M15598</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If possible yes, the principle is that the lesser the tables the faster the calculation. I think I never achieved it, though.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And yes, the Qlik Design Blog has very good views of the inners of Qlik.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Aug 2018 09:18:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-analysis-vs-precalculated-column/m-p/97328#M15598</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2018-08-22T09:18:16Z</dc:date>
    </item>
  </channel>
</rss>

