<?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: Calculation in Set Analysis in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Calculation-in-Set-Analysis/m-p/958301#M948598</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you sure that table 'Table Target_Grade' does exist when you call the Lookup() function? In above script snippet, the first LOAD is JOINed to [Table MP1], so this won't create a table [Table Target_Grade].&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 21 Dec 2015 10:04:14 GMT</pubDate>
    <dc:creator>swuehl</dc:creator>
    <dc:date>2015-12-21T10:04:14Z</dc:date>
    <item>
      <title>Calculation in Set Analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Calculation-in-Set-Analysis/m-p/958295#M948592</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;This seems like it should be straightforward, but I can't get it to work... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Within my large dataset, each row has a 'CHierarchy' and 'THierarchy' numerical field. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to count each case where CHierarchy - THierarchy = 1. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've tried:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;COUNT(CHierarchy-THierarchy=1)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;COUNT({&amp;lt;CHierarchy-THierarchy={1}&amp;gt;})&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then in desperation created a new field called 'CaseCounter' (with a value of '1' on each row), and tried:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;COUNT({&amp;lt;CHierarchy-THierarchy={1}&amp;gt;} CaseCounter)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;But nothing has worked so far. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Any help much appreciated.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Dec 2015 14:18:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculation-in-Set-Analysis/m-p/958295#M948592</guid>
      <dc:creator>jessica_webb</dc:creator>
      <dc:date>2015-12-18T14:18:50Z</dc:date>
    </item>
    <item>
      <title>Re: Calculation in Set Analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Calculation-in-Set-Analysis/m-p/958296#M948593</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;COUNT( If( CHierarchy-THierarchy=1, 1, NULL() ))&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px; line-height: 1.5em;"&gt;or&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="line-height: 1.5em; color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;SUM( If( CHierarchy-THierarchy=1, 1))&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Or create a field in the script with above if() statement, then count / sum this field.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Dec 2015 16:47:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculation-in-Set-Analysis/m-p/958296#M948593</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2015-12-18T16:47:46Z</dc:date>
    </item>
    <item>
      <title>Re: Calculation in Set Analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Calculation-in-Set-Analysis/m-p/958297#M948594</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You will need a unique field here to do it using set analysis:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Sum({&amp;lt;UniqueField = {"=(CHierarchy - THierarchy) = 1"}&amp;gt;} 1)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or try using if statement:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Sum(If(&lt;/STRONG&gt;&lt;STRONG style="font-size: 13.3333px;"&gt;(CHierarchy - THierarchy) = 1, 1))&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Dec 2015 16:52:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculation-in-Set-Analysis/m-p/958297#M948594</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-12-18T16:52:46Z</dc:date>
    </item>
    <item>
      <title>Re: Calculation in Set Analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Calculation-in-Set-Analysis/m-p/958298#M948595</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;ADDRESS&gt;try&lt;/ADDRESS&gt;&lt;ADDRESS&gt;count (if(&lt;SPAN style="color: #3d3d3d; font-family: Helvetica;"&gt;CHierarchy-THierarchy=1, 1,0))&lt;/SPAN&gt;&lt;/ADDRESS&gt;&lt;ADDRESS&gt;&lt;/ADDRESS&gt;&lt;ADDRESS&gt;&lt;/ADDRESS&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Dec 2015 16:54:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculation-in-Set-Analysis/m-p/958298#M948595</guid>
      <dc:creator />
      <dc:date>2015-12-18T16:54:42Z</dc:date>
    </item>
    <item>
      <title>Re: Calculation in Set Analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Calculation-in-Set-Analysis/m-p/958299#M948596</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can also add a new field in your script so that you do not need an if statement in your expression.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(&lt;SPAN style="font-size: 13.3333px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;CHierarchy - THierarchy&lt;/STRONG&gt;&lt;/SPAN&gt;) as &lt;STRONG&gt;diffHierarchy&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Than do&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Count&lt;/STRONG&gt;({&amp;lt;&lt;STRONG&gt;diffHierarchy&lt;/STRONG&gt;={1}&amp;gt;} &lt;STRONG&gt;CaseCounter&lt;/STRONG&gt;)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Sum&lt;/STRONG&gt;({&amp;lt;&lt;STRONG&gt;diffHierarchy&lt;/STRONG&gt;={1}&amp;gt;} &lt;STRONG&gt;1&lt;/STRONG&gt;)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Dec 2015 19:20:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculation-in-Set-Analysis/m-p/958299#M948596</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-12-18T19:20:55Z</dc:date>
    </item>
    <item>
      <title>Re: Calculation in Set Analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Calculation-in-Set-Analysis/m-p/958300#M948597</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I like the idea of creating the new field in script to avoid having too&amp;nbsp; many if statements. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, I did try this before but I'm having trouble because the two fields are in different tables. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;JOIN [Table MP1]:&lt;/P&gt;&lt;P&gt;[Table Target_Grade]:&lt;/P&gt;&lt;P&gt;LOAD SubjectType, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Actual_TargetGrade, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TGradePoints_New, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TGradePoints_Old, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; THierarchy&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;[\\L...\Grade map for QV.xls]&lt;/P&gt;&lt;P&gt;(biff, embedded labels, table is [Target points$]);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;JOIN [Table MP1]:&lt;/P&gt;&lt;P&gt;LOAD SubjectType, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Actual_CurrentGrade, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CGradePoints_New, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CGradePoints_Old, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CHierarchy,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="text-decoration: underline;"&gt;CHierarchy-Lookup('THierarchy','SubjectType',SubjectType,'Table Target_Grade') as Grade_Difference&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;[\\L...\Grade map for QV.xls]&lt;/P&gt;&lt;P&gt;(biff, embedded labels, table is [Current points$]);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The last line of script is clearly where I'm going wrong, but I'm not sure why... &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Dec 2015 09:48:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculation-in-Set-Analysis/m-p/958300#M948597</guid>
      <dc:creator>jessica_webb</dc:creator>
      <dc:date>2015-12-21T09:48:52Z</dc:date>
    </item>
    <item>
      <title>Re: Calculation in Set Analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Calculation-in-Set-Analysis/m-p/958301#M948598</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you sure that table 'Table Target_Grade' does exist when you call the Lookup() function? In above script snippet, the first LOAD is JOINed to [Table MP1], so this won't create a table [Table Target_Grade].&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Dec 2015 10:04:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculation-in-Set-Analysis/m-p/958301#M948598</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2015-12-21T10:04:14Z</dc:date>
    </item>
    <item>
      <title>Re: Calculation in Set Analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Calculation-in-Set-Analysis/m-p/958302#M948599</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ah, ok - that's good to know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have changed the Lookup to 'Table MP1', but still doesn't seem to be working. It's not throwing up any errors, but the field I have for 'Grade_Difference' remains blank...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've worked out why it isn't working at the moment:&lt;/P&gt;&lt;P&gt;CHierarchy and THierarchy are identical within the tables, so CHierarchy-THierarchy in the script, always gives a value of '0'.&lt;/P&gt;&lt;P&gt;However, if I do 'CHierarcy-THierarchy' as an expression, with 'Person ID' as a dimension, it works (as each person will have a different CHierarchy score and THierarchy score). So I need to find a way to calculate this new field in the script for &lt;STRONG&gt;every&lt;/STRONG&gt; row in 'Table MP1'. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Dec 2015 10:06:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculation-in-Set-Analysis/m-p/958302#M948599</guid>
      <dc:creator>jessica_webb</dc:creator>
      <dc:date>2015-12-21T10:06:43Z</dc:date>
    </item>
    <item>
      <title>Re: Calculation in Set Analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Calculation-in-Set-Analysis/m-p/958303#M948600</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please use below expression&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Sum({&amp;lt;&lt;SPAN style="text-decoration: underline;"&gt;SubjectType&lt;/SPAN&gt;= {"=(CHierarchy - THierarchy) = 1"}&amp;gt;} 1)&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Dec 2015 10:10:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculation-in-Set-Analysis/m-p/958303#M948600</guid>
      <dc:creator>perumal_41</dc:creator>
      <dc:date>2015-12-21T10:10:28Z</dc:date>
    </item>
    <item>
      <title>Re: Calculation in Set Analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Calculation-in-Set-Analysis/m-p/958304#M948601</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for all suggestions so far - unfortunately the '&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;COUNT/SUM( If( CHierarchy-THierarchy=1, 1, NULL() ))' type suggestions aren't working. Each gives me a different total that doesn't match what I'm expecting to see. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm sure it's an error I'm making somewhere, but I'm not sure where it is yet. Creating a new field with the grade difference seems like my best bet at the moment, but still not getting anywhere with that either... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Will keep trying and post on here when the correct solution comes up. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Dec 2015 10:15:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculation-in-Set-Analysis/m-p/958304#M948601</guid>
      <dc:creator>jessica_webb</dc:creator>
      <dc:date>2015-12-21T10:15:06Z</dc:date>
    </item>
    <item>
      <title>Re: Calculation in Set Analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Calculation-in-Set-Analysis/m-p/958305#M948602</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Sunny. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm not sure I have a unique field... I have a field called 'Person ID' (which is obviously unique for each person), but a person could have 'CHierarchy-THierarchy' totalling '1' on more than one row, so they would need to be counted more than once. Could I maybe create a new field that numbers every row differently? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Dec 2015 10:16:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculation-in-Set-Analysis/m-p/958305#M948602</guid>
      <dc:creator>jessica_webb</dc:creator>
      <dc:date>2015-12-21T10:16:53Z</dc:date>
    </item>
    <item>
      <title>Re: Calculation in Set Analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Calculation-in-Set-Analysis/m-p/958306#M948603</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Perumal - unfortunately this doesn't work. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It actually gives me 'No data to display', but I think it wouldn't work anyway as 'SubjectType' could have several instances where 'CHierarchy-THierarchy' totals '1', and I want to know how many instances.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Dec 2015 10:18:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculation-in-Set-Analysis/m-p/958306#M948603</guid>
      <dc:creator>jessica_webb</dc:creator>
      <dc:date>2015-12-21T10:18:18Z</dc:date>
    </item>
    <item>
      <title>Re: Calculation in Set Analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Calculation-in-Set-Analysis/m-p/958307#M948604</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;is possible to upload sample application ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Dec 2015 13:22:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculation-in-Set-Analysis/m-p/958307#M948604</guid>
      <dc:creator>perumal_41</dc:creator>
      <dc:date>2015-12-21T13:22:50Z</dc:date>
    </item>
    <item>
      <title>Re: Calculation in Set Analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Calculation-in-Set-Analysis/m-p/958308#M948605</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jessica,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=count(Aggr(count(if(CHierarchy - THierarch = 1,1)), RowID))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in this expression replace RowID with whatever field identifies each row uniquely. If no such single row exists but a number of fields together identifyeach row then replace RowID with these field names separated by a comma.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Dec 2015 13:44:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculation-in-Set-Analysis/m-p/958308#M948605</guid>
      <dc:creator>effinty2112</dc:creator>
      <dc:date>2015-12-21T13:44:47Z</dc:date>
    </item>
    <item>
      <title>Re: Calculation in Set Analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Calculation-in-Set-Analysis/m-p/958309#M948606</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be create a unique id using RowNo() function in the script.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Dec 2015 13:47:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculation-in-Set-Analysis/m-p/958309#M948606</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-12-21T13:47:24Z</dc:date>
    </item>
    <item>
      <title>Re: Calculation in Set Analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Calculation-in-Set-Analysis/m-p/958310#M948607</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It would be much easier to help if you could upload some sample lines of data, best within a reloadable sample QVW (e.g. as INLINE tables or attached excel files). And with a description of your expected results attached.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Dec 2015 13:55:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculation-in-Set-Analysis/m-p/958310#M948607</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2015-12-21T13:55:46Z</dc:date>
    </item>
    <item>
      <title>Re: Calculation in Set Analysis</title>
      <link>https://community.qlik.com/t5/QlikView/Calculation-in-Set-Analysis/m-p/958311#M948608</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Swuehl - started working on an example file for you (you are right, it would have been easier - I was just hoping this would be a quick fix). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyway, it's sorted now with: &lt;/P&gt;&lt;P&gt;LOAD*, CHierarchy-THierarchy as Grade_Difference&lt;/P&gt;&lt;P&gt;Resident [Table MP1];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Drop table [Table MP1];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks very much to everyone for their help!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Dec 2015 13:59:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculation-in-Set-Analysis/m-p/958311#M948608</guid>
      <dc:creator>jessica_webb</dc:creator>
      <dc:date>2015-12-21T13:59:43Z</dc:date>
    </item>
  </channel>
</rss>

