<?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: What is mistake in my script ? My first question . in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/What-is-mistake-in-my-script-My-first-question/m-p/3600#M792543</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sure &lt;STRONG style="font-size: 11.7px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;A href="https://community.qlik.com/people/rwunderlich"&gt;rwunderlich&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let's consider file like&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Load Name, Sum(Sales) as Sales From Table Group By Name;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Instead, We need to load using Resident to call all aggregate function&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Name:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Load Name, Sales From Table;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Final:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;NoConcatenate&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Load Name, Sum(Sales) as Sales Resident Name Group By Name;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Drop Table Name;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="text-decoration: underline;"&gt;Note&lt;/STRONG&gt; - Correct me if i misunderstand the concept.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 20 Jan 2018 05:17:25 GMT</pubDate>
    <dc:creator>Anil_Babu_Samineni</dc:creator>
    <dc:date>2018-01-20T05:17:25Z</dc:date>
    <item>
      <title>What is mistake in my script ? My first question .</title>
      <link>https://community.qlik.com/t5/QlikView/What-is-mistake-in-my-script-My-first-question/m-p/3596#M792539</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello community ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is my first question . I am college pass out and new to qlik .Started learning SQL and Qlikview parallely .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you in advance .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-is-mistake-in-my-script-My-first-question/m-p/3596#M792539</guid>
      <dc:creator>prahlad_infy</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: What is mistake in my script ? My first question .</title>
      <link>https://community.qlik.com/t5/QlikView/What-is-mistake-in-my-script-My-first-question/m-p/3597#M792540</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Due to Group By functionality should written only for Resident tables not the loading tables&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jan 2018 18:24:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-is-mistake-in-my-script-My-first-question/m-p/3597#M792540</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2018-01-19T18:24:00Z</dc:date>
    </item>
    <item>
      <title>Re: What is mistake in my script ? My first question .</title>
      <link>https://community.qlik.com/t5/QlikView/What-is-mistake-in-my-script-My-first-question/m-p/3598#M792541</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When you use group by, each field must either be:&lt;/P&gt;&lt;P&gt;1. Created by an aggregation function, ie Sum(). &lt;/P&gt;&lt;P&gt;2. List in the Group By. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If a field is not included as above, then the load does not know how to handle the field.&amp;nbsp; For example you have &lt;/P&gt;&lt;P&gt;Group by Client,Product,Metric,Sub_Product &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You also have a field Launch_Date.&amp;nbsp; Which Launch_Date should the load keep?&amp;nbsp; You can fix this using an aggregation like:&lt;/P&gt;&lt;P&gt;min(Launch_Date) as Launch_Date&amp;nbsp; // Keep earliest date&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jan 2018 19:02:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-is-mistake-in-my-script-My-first-question/m-p/3598#M792541</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2018-01-19T19:02:32Z</dc:date>
    </item>
    <item>
      <title>Re: What is mistake in my script ? My first question .</title>
      <link>https://community.qlik.com/t5/QlikView/What-is-mistake-in-my-script-My-first-question/m-p/3599#M792542</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;"&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Due to Group By functionality should written only for Resident tables not the loading tables"&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;This is not a restriction I'm aware of.&amp;nbsp; Can you explain further?&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;-Rob&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jan 2018 19:03:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-is-mistake-in-my-script-My-first-question/m-p/3599#M792542</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2018-01-19T19:03:14Z</dc:date>
    </item>
    <item>
      <title>Re: What is mistake in my script ? My first question .</title>
      <link>https://community.qlik.com/t5/QlikView/What-is-mistake-in-my-script-My-first-question/m-p/3600#M792543</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sure &lt;STRONG style="font-size: 11.7px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;A href="https://community.qlik.com/people/rwunderlich"&gt;rwunderlich&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let's consider file like&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Load Name, Sum(Sales) as Sales From Table Group By Name;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Instead, We need to load using Resident to call all aggregate function&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Name:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Load Name, Sales From Table;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Final:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;NoConcatenate&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Load Name, Sum(Sales) as Sales Resident Name Group By Name;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Drop Table Name;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="text-decoration: underline;"&gt;Note&lt;/STRONG&gt; - Correct me if i misunderstand the concept.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 20 Jan 2018 05:17:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-is-mistake-in-my-script-My-first-question/m-p/3600#M792543</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2018-01-20T05:17:25Z</dc:date>
    </item>
    <item>
      <title>Re: What is mistake in my script ? My first question .</title>
      <link>https://community.qlik.com/t5/QlikView/What-is-mistake-in-my-script-My-first-question/m-p/3601#M792544</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This should work as is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;Load Name, Sum(Sales) as Sales From Table Group By Name;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Assuming "Table" is a file or some other source.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"Order By" is only allowed in a Resident Load, but to my knowledge "Group By" is allowed in any load.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 20 Jan 2018 16:09:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-is-mistake-in-my-script-My-first-question/m-p/3601#M792544</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2018-01-20T16:09:33Z</dc:date>
    </item>
    <item>
      <title>Re: What is mistake in my script ? My first question .</title>
      <link>https://community.qlik.com/t5/QlikView/What-is-mistake-in-my-script-My-first-question/m-p/3602#M792545</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The tricky question is: do we really want to perform a GROUP BY on a file source?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For some added confusion, see here: &lt;A href="https://community.qlik.com/docs/DOC-19450"&gt;Optimize Group By Performance&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 20 Jan 2018 20:47:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-is-mistake-in-my-script-My-first-question/m-p/3602#M792545</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2018-01-20T20:47:16Z</dc:date>
    </item>
    <item>
      <title>Re: What is mistake in my script ? My first question .</title>
      <link>https://community.qlik.com/t5/QlikView/What-is-mistake-in-my-script-My-first-question/m-p/3603#M792546</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The vast volume of data set it is taking too much time while loading First source using Group By like we talk. Instead, I followed using Resident and it reduce some time for reload. Yes, As peter stated i even confused why Order By and along Group By makes more time save. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 21 Jan 2018 03:32:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-is-mistake-in-my-script-My-first-question/m-p/3603#M792546</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2018-01-21T03:32:23Z</dc:date>
    </item>
    <item>
      <title>Re: What is mistake in my script ? My first question .</title>
      <link>https://community.qlik.com/t5/QlikView/What-is-mistake-in-my-script-My-first-question/m-p/3604#M792547</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Anil .&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But it will be real help , if you can paste me the script . I am using personnel edition , i do not have license .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also based on ongoing discussion , i am little confused . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is understand , that we cannot use group during load , but we can used group by if we take resident to initially loaded data . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please correct me , if i am wrong .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Jan 2018 08:01:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-is-mistake-in-my-script-My-first-question/m-p/3604#M792547</guid>
      <dc:creator>prahlad_infy</dc:creator>
      <dc:date>2018-01-22T08:01:35Z</dc:date>
    </item>
    <item>
      <title>Re: What is mistake in my script ? My first question .</title>
      <link>https://community.qlik.com/t5/QlikView/What-is-mistake-in-my-script-My-first-question/m-p/3605#M792548</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Peter,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm really sorry you threw this in. Confusion, yes &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jan 2018 00:02:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-is-mistake-in-my-script-My-first-question/m-p/3605#M792548</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2018-01-23T00:02:20Z</dc:date>
    </item>
    <item>
      <title>Re: What is mistake in my script ? My first question .</title>
      <link>https://community.qlik.com/t5/QlikView/What-is-mistake-in-my-script-My-first-question/m-p/3606#M792549</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'll never do it again &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/silly.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The thing is that to me Anil has a point. While not technically impossible to perform a GROUP BY on a file source, in many cases it is not in the best interest of optimal performance. As far as I can see, I mean.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jan 2018 08:58:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-is-mistake-in-my-script-My-first-question/m-p/3606#M792549</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2018-01-23T08:58:59Z</dc:date>
    </item>
    <item>
      <title>Re: What is mistake in my script ? My first question .</title>
      <link>https://community.qlik.com/t5/QlikView/What-is-mistake-in-my-script-My-first-question/m-p/3607#M792550</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Prahlad,&lt;/P&gt;&lt;P&gt;The basic Group By rule is all the columns which are not part of Aggregate Function should be listed in Group By. You missed few like Launch date in your script. Hence, getting the error. Further, you can include what Rob suggested in his response.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Below is the script, that will work.&lt;/P&gt;&lt;P&gt;LOAD Client, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Launch_Date, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date#(Text(Launch_Date),'DD/MM/YYYY') as Date_of_Launch,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(IsNull(Date#(Text(Launch_Date),'DD/MM/YYYY')),'NULL',Date#(Text(Launch_Date),'DD/MM/YYYY')) AS dt,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date(Date#(Launch_Date,'DD/MM/YYYY')) as dt2,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Product, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Sub_Product, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Metric, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sum(Value)&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;[Client Product.xlsx]&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Product)&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Group by Client, Launch_Date,Product,Sub_Product,&lt;STRONG style="font-size: 13.3333px;"&gt;Metric&lt;/STRONG&gt; ;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Jan 2018 11:18:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-is-mistake-in-my-script-My-first-question/m-p/3607#M792550</guid>
      <dc:creator>vineetadahiya12</dc:creator>
      <dc:date>2018-01-23T11:18:18Z</dc:date>
    </item>
    <item>
      <title>Re: What is mistake in my script ? My first question .</title>
      <link>https://community.qlik.com/t5/QlikView/What-is-mistake-in-my-script-My-first-question/m-p/3608#M792551</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rob ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am confused as well ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Below code does not work &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RT:&lt;/P&gt;&lt;P&gt;LOAD Client, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date(Date#(Launch_Date,'DD/MM/YYYY')) AS Date, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Product, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Sub_Product, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Metric, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Value&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;[Client Product.xlsx]&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Product);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NoConcatenate&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RT2:&lt;/P&gt;&lt;P&gt;LOAD Client,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Product, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Sub_Product, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Metric,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Value, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sum(Value),&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; min(Date)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Resident RT &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Group by Client, Date,Product,Sub_Product,Metric Order BY Client ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DROP Table RT ;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Mar 2018 13:07:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-is-mistake-in-my-script-My-first-question/m-p/3608#M792551</guid>
      <dc:creator>shekhar_analyti</dc:creator>
      <dc:date>2018-03-02T13:07:52Z</dc:date>
    </item>
    <item>
      <title>Re: What is mistake in my script ? My first question .</title>
      <link>https://community.qlik.com/t5/QlikView/What-is-mistake-in-my-script-My-first-question/m-p/3609#M792553</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It should be obvious if you look closely.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In your second LOAD statement, field Value is both specificed on its own and embedded in a Sum() call. Either&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;add Value to the GROUP BY clause and drop the Sum(Value) call (doesn't make any sense to me, but maybe it does to you), or &lt;/LI&gt;&lt;LI&gt;drop the bare Value field name from the column list. You will then aggregate all Value values for each combination of values for the GROUP BY fields.&lt;/LI&gt;&lt;/UL&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Mar 2018 13:26:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-is-mistake-in-my-script-My-first-question/m-p/3609#M792553</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2018-03-02T13:26:58Z</dc:date>
    </item>
  </channel>
</rss>

